Click or drag to resize
DocumentsControllerUpdate Method

[This is preliminary documentation and is subject to change.]

Updates an existing document instance to the database. All required fields in the document should be filled out. Don't forget the document instance guid.

Namespace: WebServiceKit.Controllers
Assembly: WebServiceKit (in WebServiceKit.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public IHttpActionResult Update(
	QueuedObject _qo
)

Parameters

_qo
Type: QueuedObject

[Missing <param name="_qo"/> documentation for "M:WebServiceKit.Controllers.DocumentsController.Update(Biome.Library.Objects.QueuedObject)"]

Return Value

Type: IHttpActionResult
200 OK if the document instance is updated, 404 if it isn't already in the database, otherwise 400.
Remarks
The document must be formatted using XML or JSON depending on the client PUT. Call requires a valid login token. HTTP Method: PUT
[Route("api/documents/update")]
See Also