POST api/ExtractTagsFromDoc
Request Information
URI Parameters
None.
Body Parameters
ClsExtractTagsInput| Name | Description | Type | Additional information |
|---|---|---|---|
| FileBase64 | string |
None. |
|
| DocType | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"FileBase64": "sample string 1",
"DocType": "sample string 2"
}
application/xml, text/xml
Sample:
<DocumentService.ClsExtractTagsInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TXTDocument_Service.DBO"> <DocType>sample string 2</DocType> <FileBase64>sample string 1</FileBase64> </DocumentService.ClsExtractTagsInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ClsDocSvcResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| Base64File | string |
None. |
|
| DataObject | Object |
None. |
|
| Code | string |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"Base64File": "sample string 2",
"DataObject": {},
"Code": "sample string 4",
"Message": "sample string 5"
}
application/xml, text/xml
Sample:
<DocumentService.ClsDocSvcResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TXTDocument_Service.DBO"> <Base64File>sample string 2</Base64File> <Code>sample string 4</Code> <DataObject /> <Message>sample string 5</Message> <Status>true</Status> </DocumentService.ClsDocSvcResponse>