GET
/
api
/
v1
/
pricing-models
List Pricing Models
curl --request GET \
  --url https://app.flowglad.com/api/v1/pricing-models \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "createdByCommit": "<string>",
      "updatedByCommit": "<string>",
      "livemode": true,
      "organizationId": "<string>",
      "isDefault": true,
      "name": "<string>"
    }
  ],
  "currentCursor": "<string>",
  "nextCursor": "<string>",
  "hasMore": true,
  "total": 123
}

Authorizations

Authorization
string
header
required

Query Parameters

cursor
string
limit
string

Response

200
application/json

Successful response

The response is of type object.