Skip to main content
GET
/
developer
/
companies
/
invoices
{
  "data": [
    {
      "id": "11111111-1111-4111-8111-000000000206",
      "public_id": "invoice_api_doc_list_001",
      "status": "pending",
      "due_date": "2027-02-01T00:00:00.000Z",
      "issued_at": "2027-01-01T00:00:00.000Z",
      "cancelled_at": null,
      "invoice_number": "INV-API-DOC-001",
      "reference": "API documentation example",
      "deposit_account_id": "11111111-1111-4111-8111-000000000203",
      "amount": 100,
      "line_items": [
        {
          "quantity": 1,
          "unit_price": 100,
          "discount": 0,
          "description": "Integration test line item"
        }
      ],
      "template_id": "11111111-1111-4111-8111-000000000205",
      "recipient_id": "11111111-1111-4111-8111-000000000204",
      "currency": "GBP",
      "notes": "Created for API documentation examples.",
      "requested_by": {
        "id": "11111111-1111-4111-8111-000000000202",
        "first_name": "Integration",
        "last_name": "Tester",
        "email": "integration-tester@incard.test"
      },
      "transaction_id": null,
      "template": {
        "id": "11111111-1111-4111-8111-000000000205",
        "name": "Template api-doc-list",
        "background_type": "colour",
        "background_asset_id": null,
        "background_colour": "#ffffff"
      },
      "recipient": {
        "id": "11111111-1111-4111-8111-000000000204",
        "type": "individual",
        "first_name": "Alex",
        "last_name": "Recipient",
        "company_name": null,
        "email": "recipient-api-doc-list@incard.test",
        "city": null,
        "address_line_1": null,
        "address_line_2": null,
        "postcode": null,
        "state": null,
        "country": null,
        "last_requested_at": null
      },
      "reminderSchedule": null
    }
  ],
  "meta": {
    "total": 1,
    "take": 25,
    "skip": 0
  }
}

Authorizations

Authorization
string
header
required

Short-lived access token. Obtain with your api_key.

Response

Paginated outbound invoice collection.

data
object[]
required

Outbound invoices for the current page.

meta
object