PPylon Developers
ApiPricing Tiers

List pricing tiers

Returns a paginated list of pricing tiers.

GET
/api/organizer/v1/pricing-tiers
AuthorizationBearer <token>

Enter your bearer token from the Pylon Auth API.

In: header

Query Parameters

page?integer
Default1
Formatint32
pageSize?integer
Default20
Formatint32
sort?string
q?string
itemType?string
itemId?string
Formatuuid
status?unknown
Value in"Draft" | "Active" | "Inactive" | "Archived" | null

Response Body

application/json

application/json

curl -X GET "https://loading/api/organizer/v1/pricing-tiers"
{
  "data": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "itemType": "string",
      "itemId": null,
      "name": "string",
      "description": null,
      "priceAmount": 0.1,
      "priceCurrency": null,
      "minPriceAmount": 0.1,
      "minPriceCurrency": null,
      "maxPriceAmount": 0.1,
      "maxPriceCurrency": null,
      "priceModifierType": null,
      "priceModifierValue": 0.1,
      "context": null,
      "validFrom": "2019-08-24T14:15:22Z",
      "validUntil": "2019-08-24T14:15:22Z",
      "capacity": 0,
      "soldCount": 0,
      "availableCount": 0,
      "status": "string",
      "priority": 0,
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z"
    }
  ],
  "meta": {
    "totalCount": 0,
    "page": 0,
    "pageSize": 0,
    "totalPages": 0,
    "hasNext": true,
    "hasPrevious": true
  },
  "links": null
}
{
  "code": "string",
  "message": "string"
}