GET
/
api
/
v1
/
invoices
curl --request GET \
  --url https://app.flowglad.com/api/v1/invoices \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "livemode": true,
      "purchaseId": "<string>",
      "invoiceNumber": "<string>",
      "invoiceDate": "2023-11-07T05:31:56Z",
      "billingPeriodId": "null",
      "dueDate": "2023-11-07T05:31:56Z",
      "customerId": "<string>",
      "organizationId": "<string>",
      "status": "draft",
      "billingInterval": "day",
      "subscriptionId": "null",
      "billingPeriodStartDate": "2023-11-07T05:31:56Z",
      "billingPeriodEndDate": "2023-11-07T05:31:56Z",
      "billingIntervalCount": 123,
      "billingAnchorDate": "2023-11-07T05:31:56Z",
      "ownerMembershipId": "<string>",
      "pdfURL": "<string>",
      "receiptPdfURL": "<string>",
      "memo": "<string>",
      "bankPaymentOnly": true,
      "type": "purchase",
      "currency": "USD",
      "taxAmount": 123,
      "subtotal": 123,
      "taxType": "amusement_tax",
      "taxCountry": "AF",
      "taxState": "<string>",
      "taxRatePercentage": "<string>",
      "applicationFee": 123
    }
  ],
  "currentCursor": "<string>",
  "nextCursor": "<string>",
  "hasMore": true,
  "total": 123
}

Authorizations

Authorization
string
header
required

Query Parameters

cursor
string
limit
number
Required range: 1 <= x <= 100

Response

200
application/json
Successful response
data
object[]
required

An invoice record, which describes a bill that can be associated with a purchase, subscription, or stand alone. Each invoice has a specific type that determines its behavior and required fields.

hasMore
boolean
required
total
number
required
currentCursor
string
nextCursor
string