Checkio API
post/{tenantId}/v1/products/resolve-price

Resolve product price

Requires Authentication
Products

Returns the price for a product based on tenant configuration

Path Parameters

NameTypeDescription
tenantId
required
string (uuid)Tenant UUID

Request Body

required
productCode
string
required
productFeatureCode
string
- Optional feature code to include in the price

Responses

Product price

Response Bodyapplication/json
price
integer (int32)
- Resolved price in credits

Code Examples

curl -X POST 'https://api-next.checkio.co.uk/{tenantId}/v1/products/resolve-price' \
  -H 'Authorization: Bearer {token}' \
  -H 'Content-Type: application/json' \
  -d '{
  "productCode": "string",
  "productFeatureCode": "string"
}'