Click or drag to resize
DocumentTypesControllerGet Method (Guid)

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

Retrieves a document type by guid from the database.

Namespace: WebServiceKit.Controllers
Assembly: WebServiceKit (in WebServiceKit.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public IHttpActionResult Get(
	Guid guid
)

Parameters

guid
Type: SystemGuid
Target document type guid.

Return Value

Type: IHttpActionResult
200 OK and the serialized document type will be returned if the document type guid is found, otherwise 404.
Remarks
The document type is formatted using XML or JSON depending on the client request. Call requires a valid login token. HTTP Method: GET
[Route("api/documenttypes/{guid}")]
See Also