latestOpenAPI 3.0.12026-08-18132038.0 KB

310150fbd68d

Invoices

Show a single invoice

get/V1/invoices/{id}

Response

lookup by decorated invoice_number

invoice_numberstring nullable
created_atstring date-time
payment_due_datestring date nullable
payment_datestring date nullable
descriptionstring nullable
po_numberstring nullable
client_ccystring nullable
statusstring nullable
payment_request_idstring uuid nullable

Example response

{
  "invoice_number": "Worders-Invoice2847",
  "description": "Collective invoice - May 2026",
  "client_ccy": "USD",
  "status": "outstanding",
  "totals": {
    "net": 5778,
    "outgoing": 5778
  },
  "customer": {
    "plunet_id": 12345,
    "name": "EBSCO",
    "address": "EBSCO\n10 Estes Street\n01938 Ipswich\nUnited States"
  },
  "items": [
    {
      "requester": "Amber Russell",
      "order_reference": "O-9703",
      "project_name": "Weekly Researcher task - May 5",
      "total_price": 9,
      "order_item": {
        "id": "I-44556",
        "language_source": "en-US",
        "language_target": "fr-FR",
        "client_price": 49.5,
        "status": "invoiced",
        "price_line": [
          {
            "price_unit_id": 12,
            "service": "Culturalization",
            "unit": "Hour",
            "amount": 0.55,
            "unit_price": 90,
            "total": 49.5
          }
        ]
      }
    }
  ]
}