Checkio API
get/{tenantId}/v1/products

List accessible products

Requires Authentication
Products

Returns all products the tenant has access to with effective pricing.

Only products that are enabled and assigned to the tenant are returned.

Prices reflect any tenant-specific overrides.

Path Parameters

NameTypeDescription
tenantId
required
string (uuid)Tenant UUID

Responses

List of accessible products

Response Bodyapplication/json
array
AccessibleProduct[]
AccessibleProduct
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' \
  -H 'Authorization: Bearer {token}'