GET InvoicesTypes/{id}
Gets a invoice type by it's ID, represented as InvoicesTypeDto.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the invoice type. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The invoice type data.
InvoicesTypeDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Code | string |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| ValidateElectronicAuthorizationCode | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "bc334080-06de-4416-bd7b-d5acfeb2ba10",
"Code": "sample string 2",
"Name": "sample string 3",
"Description": "sample string 4",
"ValidateElectronicAuthorizationCode": true
}
application/xml, text/xml
Sample:
<InvoicesTypeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model"> <Code>sample string 2</Code> <Description>sample string 4</Description> <Id>bc334080-06de-4416-bd7b-d5acfeb2ba10</Id> <Name>sample string 3</Name> <ValidateElectronicAuthorizationCode>true</ValidateElectronicAuthorizationCode> </InvoicesTypeDto>