GET v1/invoice-formats

Get list of all available active/inactive invoice formats.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Formats
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Active

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "name": "sample string 2",
    "active": true
  },
  {
    "id": 1,
    "name": "sample string 2",
    "active": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfFormats xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BAPI.Models.Core">
  <Formats>
    <Active>true</Active>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </Formats>
  <Formats>
    <Active>true</Active>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </Formats>
</ArrayOfFormats>