Checkio API
get/{tenantId}/v1/products/{productCode}/features

List product features

Requires Authentication
Products

Returns all features for a product that the tenant has access to.

Prices reflect any tenant-specific overrides.

Path Parameters

NameTypeDescription
tenantId
required
string (uuid)Tenant UUID
productCode
required
stringProduct code

Responses

List of accessible features

Response Bodyapplication/json
array
AccessibleFeature[]
AccessibleFeature
id
string (uuid)
code
string
name
string
description
string
price
integer (int64)
- Effective price in credits (tenant override or default)
isPriceOverride
boolean
- Whether the price is a tenant-specific override

Code Examples

curl -X GET 'https://api-next.checkio.co.uk/{tenantId}/v1/products/{productCode}/features' \
  -H 'Authorization: Bearer {token}'