PPylon Developers
ApiPricing Tiers

Create Pricing Tier

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

Enter your bearer token from the Pylon Auth API.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://loading/api/organizer/v1/pricing-tiers" \  -H "Content-Type: application/json" \  -d '{    "itemType": "string",    "itemId": null,    "name": "string",    "priceAmount": 0.1,    "priceCurrency": null,    "priceModifierType": null,    "priceModifierValue": 0.1,    "context": null,    "validFrom": "2019-08-24T14:15:22Z"  }'
{
  "pricingTierId": "31780c56-3e1f-496d-bdac-780902525800"
}
{
  "code": "string",
  "message": "string"
}