PPylon Developers
ApiPricing Tiers

Calculate Effective Price

POST
/api/organizer/v1/pricing-tiers/calculate-price
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/calculate-price" \  -H "Content-Type: application/json" \  -d '{    "itemType": "string",    "itemId": "f11b669d-7201-4c21-88af-d85092f0c005",    "basePrice": 0.1,    "baseCurrency": "string"  }'
{
  "amount": 0.1,
  "currency": "string",
  "pricingTierId": null,
  "tierName": null,
  "source": "string"
}
{
  "code": "string",
  "message": "string"
}