GET
/
v1
/
billing
/
payments
curl --request GET \
  --url https://api.pulze.ai/v1/billing/payments \
  --header 'Authorization: Bearer <token>'
{
  "payments": [
    "<any>"
  ],
  "discount": {
    "name": "<string>",
    "id": "<string>",
    "amount_off": 123,
    "percent_off": 123,
    "currency": "usd"
  },
  "default_card": "<string>"
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json
Successful Response
payments
any[]
required
discount
object | null
required
default_card
string | null
required