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.
InvoicesTypeDtoName | 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": "eee2d239-5171-4cb4-9060-e4938243e757", "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>eee2d239-5171-4cb4-9060-e4938243e757</Id> <Name>sample string 3</Name> <ValidateElectronicAuthorizationCode>true</ValidateElectronicAuthorizationCode> </InvoicesTypeDto>