InvoiceVersion

Retrieves the collection of InvoiceVersion resources.

get

Retrieves the collection of InvoiceVersion resources.

Authorizations
Query parameters
id[between]stringOptional
id[gt]stringOptional
id[gte]stringOptional
id[lt]stringOptional
id[lte]stringOptional
Responses
200

InvoiceVersion collection

get
GET /invoice_versions HTTP/1.1
Host: api
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

InvoiceVersion collection

{
  "hydra:member": [
    {
      "@id": "text",
      "@type": "text",
      "@context": "text",
      "id": 1,
      "invoice": "/entitiy/1",
      "version": 1,
      "referenceNumber": "text",
      "address": {
        "@context": "text",
        "@id": "text",
        "@type": "text",
        "id": 1,
        "street": "text",
        "zip": "text",
        "city": "text",
        "phone": "text",
        "mobilePhone": "text",
        "fax": "text",
        "company": "text",
        "department": "text",
        "aux": "text",
        "state": "text",
        "country": "text",
        "email": "text",
        "careOf": "text",
        "url": "text",
        "vatId": "text"
      },
      "reverseChargeState": "none",
      "creationDate": "2025-09-12T18:18:25.490Z",
      "paymentMethod": "/entitiy/1",
      "isCancellation": true,
      "positions": [
        {
          "@context": "text",
          "@id": "text",
          "@type": "text",
          "id": 1,
          "sum": 1,
          "taxRate": 1,
          "offerpackage": "/entitiy/1",
          "priceGroup": "/entitiy/1",
          "paymentMethod": "/entitiy/1"
        }
      ]
    }
  ],
  "hydra:totalItems": 1,
  "hydra:view": {
    "@id": "string",
    "type": "string",
    "hydra:first": "string",
    "hydra:last": "string",
    "hydra:previous": "string",
    "hydra:next": "string"
  },
  "hydra:search": {
    "@type": "text",
    "hydra:template": "text",
    "hydra:variableRepresentation": "text",
    "hydra:mapping": [
      {
        "@type": "text",
        "variable": "text",
        "property": "text",
        "required": true
      }
    ]
  }
}

Retrieves a InvoiceVersion resource.

get

Retrieves a InvoiceVersion resource.

Authorizations
Path parameters
idstringRequired

Resource identifier

Responses
200

InvoiceVersion resource

get
GET /invoice_versions/{id} HTTP/1.1
Host: api
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "@id": "text",
  "@type": "text",
  "@context": "text",
  "id": 1,
  "invoice": "/entitiy/1",
  "version": 1,
  "referenceNumber": "text",
  "address": {
    "@context": "text",
    "@id": "text",
    "@type": "text",
    "id": 1,
    "street": "text",
    "zip": "text",
    "city": "text",
    "phone": "text",
    "mobilePhone": "text",
    "fax": "text",
    "company": "text",
    "department": "text",
    "aux": "text",
    "state": "text",
    "country": "text",
    "email": "text",
    "careOf": "text",
    "url": "text",
    "vatId": "text"
  },
  "reverseChargeState": "none",
  "creationDate": "2025-09-12T18:18:25.490Z",
  "paymentMethod": "/entitiy/1",
  "isCancellation": true,
  "positions": [
    {
      "@context": "text",
      "@id": "text",
      "@type": "text",
      "id": 1,
      "sum": 1,
      "taxRate": 1,
      "offerpackage": "/entitiy/1",
      "priceGroup": "/entitiy/1",
      "paymentMethod": "/entitiy/1"
    }
  ]
}

Was this helpful?