GET api/invoice/einvoicetype

Gets all einvoice types

Request Information

URI Parameters

None.

Body Parameters

None.

Remarks

None.

Example

None.

Response Information

Resource Description

Collection of EInvoiceTypeResponse
NameDescriptionTypeAdditional information
Id

Id of the einvoice type

integer

None.

Name

Description of the einvoice type

string

None.

IsFleet

boolean

None.

EULabelingAsRow

boolean

None.

IsVisible

boolean

None.

CanHandleCollectedInvoice

True if einvoice can handle collected invoice

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "IsFleet": true,
    "EULabelingAsRow": true,
    "IsVisible": true,
    "CanHandleCollectedInvoice": true
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "IsFleet": true,
    "EULabelingAsRow": true,
    "IsVisible": true,
    "CanHandleCollectedInvoice": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfEInvoiceTypeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.Invocie">
  <EInvoiceTypeResponse>
    <CanHandleCollectedInvoice>true</CanHandleCollectedInvoice>
    <EULabelingAsRow>true</EULabelingAsRow>
    <Id>1</Id>
    <IsFleet>true</IsFleet>
    <IsVisible>true</IsVisible>
    <Name>sample string 2</Name>
  </EInvoiceTypeResponse>
  <EInvoiceTypeResponse>
    <CanHandleCollectedInvoice>true</CanHandleCollectedInvoice>
    <EULabelingAsRow>true</EULabelingAsRow>
    <Id>1</Id>
    <IsFleet>true</IsFleet>
    <IsVisible>true</IsVisible>
    <Name>sample string 2</Name>
  </EInvoiceTypeResponse>
</ArrayOfEInvoiceTypeResponse>