Checkio API
get/{tenantId}/v1/products/component-groups/{groupId}/items

List component group items

Requires Authentication
Products

Returns all component items for a group that the tenant has access to.

Prices reflect any tenant-specific overrides.

Path Parameters

NameTypeDescription
tenantId
required
string (uuid)Tenant UUID
groupId
required
string (uuid)Component group UUID

Responses

List of accessible component items

Response Bodyapplication/json
array
AccessibleComponentItem[]
AccessibleComponentItem
id
string (uuid)
code
string
name
string
price
integer (int64)
- Effective price in credits (tenant override or default), null if no price set
isPriceOverride
boolean
- Whether the price is a tenant-specific override
tierPrices
array
ComponentItemTierPrice[]

Code Examples

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