GET
/
api
/
v1
/
payments
curl --request GET \
  --url https://app.flowglad.com/api/v1/payments \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "invoiceId": "<string>",
      "amount": 123,
      "paymentMethod": "card",
      "currency": "USD",
      "status": "canceled",
      "chargeDate": "2023-11-07T05:31:56Z",
      "settlementDate": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "receiptNumber": "<string>",
      "receiptURL": "<string>",
      "customerId": "<string>",
      "purchaseId": "<string>",
      "paymentMethodId": "<string>",
      "billingPeriodId": "<string>",
      "stripeChargeId": "<string>",
      "taxAmount": 123,
      "subtotal": 123,
      "taxType": "amusement_tax",
      "taxCountry": "AF",
      "taxState": "<string>",
      "taxRatePercentage": "<string>",
      "applicationFee": 123,
      "refunded": true,
      "refundedAmount": 123,
      "refundedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "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
hasMore
boolean
required
total
number
required
currentCursor
string
nextCursor
string