Skip to main content
GET
/
api
/
v1
/
invoices
Get customer invoices
curl --request GET \
  --url https://dev-billing-api.iqraa.ai/api/v1/api/v1/invoices \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Preferred-Language: <x-preferred-language>'
{
  "invoices": [
    {
      "id": "<string>",
      "invoiceNumber": "<string>",
      "date": "<string>",
      "status": "DRAFT",
      "amount": 123,
      "currency": "<string>",
      "description": "<string>",
      "customerName": "<string>",
      "customerEmail": "<string>",
      "downloadLink": "<string>",
      "planType": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Preferred-Language
enum<string>
required

Language for invoice fields

Available options:
ar,
en

Response

List of invoices retrieved successfully

invoices
object[]
required