Skip to content

List Products

Returns a list of available products with their ID and English name. Useful for looking up product_id values when managing user kits.

HeaderRequiredValue
api-keyyesImport API key

HTTP 200 OK

[
{
"id": 1,
"product_name": "Rain Jacket"
},
{
"id": 2,
"product_name": "Rain Pants"
}
]
FieldTypeDescription
idintInternal product ID
product_namestringProduct name (English translation)

Only products where available = 1 and deleted_at is null are returned.

StatusDescription
401Missing api-key header
403Invalid api-key value