curl --request GET \
--url https://api.hyperline.co/v1/products \
--header 'Authorization: Bearer <token>'{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0,
"approximateCount": false
},
"data": [
{
"id": "itm_3kXODDF42QXtnL",
"name": "Product name",
"status": "active",
"description": "Product internal description",
"description_display_interval_dates": true,
"public_description": "Product public description",
"translations": {},
"properties": null,
"custom_properties": {},
"accounting": {},
"type": "flat_fee",
"is_available_on_demand": true,
"is_available_on_subscription": true
}
]
}Retrieve existing products.
curl --request GET \
--url https://api.hyperline.co/v1/products \
--header 'Authorization: Bearer <token>'{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0,
"approximateCount": false
},
"data": [
{
"id": "itm_3kXODDF42QXtnL",
"name": "Product name",
"status": "active",
"description": "Product internal description",
"description_display_interval_dates": true,
"public_description": "Product public description",
"translations": {},
"properties": null,
"custom_properties": {},
"accounting": {},
"type": "flat_fee",
"is_available_on_demand": true,
"is_available_on_subscription": true
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
0 <= x <= 100x >= 0all, active, archived all, active, archived Was this page helpful?