POST
/
api
/
v1
/
invoices
curl --request POST \
  --url https://app.flowglad.com/api/v1/invoices \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "invoice": {
    "purchaseId": "<string>",
    "invoiceNumber": "<string>",
    "invoiceDate": "2023-11-07T05:31:56Z",
    "billingPeriodId": "null",
    "dueDate": "2023-11-07T05:31:56Z",
    "customerId": "<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",
    "subtotal": 123,
    "taxType": "amusement_tax",
    "taxCountry": "AF",
    "taxState": "<string>"
  },
  "invoiceLineItems": [
    {
      "invoiceId": "<string>",
      "quantity": 123,
      "priceId": "<string>",
      "description": "<string>",
      "price": 123
    }
  ],
  "autoSend": true
}'
{
  "invoice": {
    "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
  },
  "invoiceLineItems": [
    {
      "id": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "livemode": true,
      "invoiceId": "<string>",
      "quantity": 123,
      "priceId": "<string>",
      "description": "<string>",
      "price": 123
    }
  ],
  "autoSend": true
}

Authorizations

Authorization
string
header
required

Body

application/json
invoice
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.

invoiceLineItems
object[]
required
autoSend
boolean

Response

200
application/json
Successful response
invoice
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.

invoiceLineItems
object[]
required
autoSend
boolean