GET
/
v1
/
invoices
curl --request GET \
  --url https://api.nomod.com/v1/invoices \
  --header 'X-API-KEY: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "title": "<string>",
      "url": "<string>",
      "amount": "<string>",
      "currency": "<string>",
      "status": "paid",
      "discount": "<string>",
      "service_fee": "<string>",
      "shipping_address_required": true,
      "items": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "amount": "<string>",
          "name": "<string>",
          "total_amount": "<string>",
          "quantity": 2147483647,
          "sku": "<string>"
        }
      ],
      "tax": "<string>",
      "note": "<string>",
      "taxes": [
        {
          "name": "<string>",
          "mode": "<string>",
          "mode_value": "0.000",
          "value": "0.000"
        }
      ],
      "discount_percentage": 123,
      "service_fee_percentage": "<string>",
      "tip": "<string>",
      "tip_percentage": 123,
      "invoice_number": "<string>",
      "due_date": "2023-11-07T05:31:56Z",
      "custom_fields": [
        {
          "name": "<string>",
          "is_required": true
        }
      ],
      "source": "woocommerce",
      "pages_url": "<string>",
      "customer": {}
    }
  ]
}

Authorizations

X-API-KEY
string
header
required

Your API key. This is required by all endpoints to access our API programatically. You can view your API Key by navigating to the app settings

Query Parameters

allow_tip
boolean
currency
string

currency code i-e AED

customer_id
string
id
string
invoice_number
string

search by invoice number

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

reference_id
string

search by title or country code

shipping_address_required
boolean

Ask for Shipping Address

status
enum<string>

invoice staus

Available options:
cancelled,
overdue,
paid,
scheduled,
unpaid

Response

200 - application/json

The response is of type object.