GET DocumentTypesAccepted/{id}
Gets an Document Types Accepted by it's ID, represented as DocumentTypesAcceptedDto.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the Document Types Accepted. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The Document Types Accepted data.
DocumentTypeAcceptedDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| IdNetwork | globally unique identifier |
None. |
|
| Code | string |
None. |
|
| Description | string |
None. |
|
| Validator | boolean |
None. |
|
| Active | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "9636c831-5f7c-4e1f-89e2-4a70b8ec2af2",
"IdNetwork": "863c0c52-8552-4c9e-9ba5-0963b93e4ba1",
"Code": "sample string 3",
"Description": "sample string 4",
"Validator": true,
"Active": true
}
application/xml, text/xml
Sample:
<DocumentTypeAcceptedDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model"> <Active>true</Active> <Code>sample string 3</Code> <Description>sample string 4</Description> <Id>9636c831-5f7c-4e1f-89e2-4a70b8ec2af2</Id> <IdNetwork>863c0c52-8552-4c9e-9ba5-0963b93e4ba1</IdNetwork> <Validator>true</Validator> </DocumentTypeAcceptedDto>