GetDocumentTypesByCategoryUUID

Use this method to get your document types.

This method is used to retrieve all document types you have by using the Category UUID, which can be retrieved using the GetCategories method.

GetDocumentTypesByCategoryUUID

POST https://testapi.onvision.ai/wsservice.asmx

Use this method to get your document types in a JSON format.

Path Parameters

NameTypeDescription

TOKEN

string

Token

UUID

string

Universally Unique Identifier

{
	"Envelope": {
		"Success": "1",
		"Message": "",
		"Info": {
			"Version": "1.0.0",
			"Run_Date": "20211008105813",
			"Executed_ms": "704.1739"
		},
		"Result": {
			"DocumentType": "Income document",
			"UUID": "0454D004-16C7-489E-B85D-47064C3E9B9D"
		}
	}
}

GetDocumentTypesByCategoryUUID

POST https://testapi.onvision.ai/wsserviceNet.asmx

Use this method to get your document types in a XML format.

Path Parameters

NameTypeDescription

TOKEN

string

Token

UUID

string

Universally Unique Identifier

<Envelope debug="true">
	<script id="FirebugLiteCSPTest" firebugIgnore="true" extension="Chrome" extension-id="ehemiojjcpldeipjhjkepfdaohajpbdo"/>
	<Success>1</Success>
	<Message></Message>
	<Info>
		<Version>1.0.0</Version>
		<Run_Date>20211008110037</Run_Date>
		<Executed_ms>156.005</Executed_ms>
	</Info>
	<Result>
		<DocumentType>Income document</DocumentType>
		<UUID>0454D004-16C7-489E-B85D-47064C3E9B9D</UUID>
	</Result>
</Envelope>

Last updated