GET api/invoice/invoicetype
Gets all invoice types
Request Information
URI Parameters
None.
Body Parameters
None.
Remarks
None.
Example
None.
Response Information
Resource Description
Collection of InvoiceTypeResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | InvoiceType |
None. |
|
| Name | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Name": "sample string 1"
},
{
"Id": 1,
"Name": "sample string 1"
}
]
application/xml, text/xml
Sample:
<ArrayOfInvoiceTypeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.Invocie">
<InvoiceTypeResponse>
<Id>NormalInvoice</Id>
<Name>sample string 1</Name>
</InvoiceTypeResponse>
<InvoiceTypeResponse>
<Id>NormalInvoice</Id>
<Name>sample string 1</Name>
</InvoiceTypeResponse>
</ArrayOfInvoiceTypeResponse>