v1

latestOpenAPI 3.0.02026-07-1315476656.4 KB
Invoice

Find invoice positions

Returns all positions of an invoice

get/Invoice/{invoiceId}/getPositions

Path parameters

invoiceIdinteger required

ID of invoice to return the positions

Query parameters

limitinteger

limits the number of entries returned

offsetinteger

set the index where the returned entries start

embedstring[]

Get some additional information. Embed can handle multiple values, they must be separated by comma.

Response

Successful operation

Example response

{
  "objects": [
    {
      "objectName": "InvoicePos",
      "create": "01.01.2020",
      "update": "01.01.2020",
      "invoice": {
        "id": "1",
        "objectName": "Invoice"
      },
      "part": {
        "id": "1",
        "objectName": "Part"
      },
      "quantity": true,
      "price": "100",
      "name": "Dragonglass",
      "unity": {
        "id": "1",
        "objectName": "Unity"
      },
      "sevClient": {
        "id": "1",
        "objectName": "SevClient"
      },
      "positionNumber": "0",
      "discount": "0",
      "taxRate": "19",
      "sumDiscount": "0",
      "sumNetAccounting": "0",
      "sumTaxAccounting": "0",
      "sumGrossAccounting": "0",
      "priceNet": "0",
      "priceGross": "100",
      "priceTax": "0"
    }
  ]
}