Products
The following endpoints allow you to view the products and price lists configured for your partner account.
Last updated
The following endpoints allow you to view the products and price lists configured for your partner account.
Last updated
GET /api/portal/products HTTP/1.1
Host: partners.clym.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"result": [
{
"id": "text",
"type": "SUBSCRIPTION",
"code": "text",
"name": "text",
"prices": [
{
"id": 1,
"frequency": "MONTH",
"price_list": {
"id": 1,
"code": "text"
}
}
],
"features": [
{
"code": "text",
"name": "text",
"type": "BOOLEAN",
"value": 1
}
]
}
]
}GET /api/portal/products/{productId} HTTP/1.1
Host: partners.clym.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"result": {
"id": "text",
"type": "SUBSCRIPTION",
"code": "text",
"name": "text",
"prices": [
{
"id": 1,
"frequency": "MONTH",
"price_list": {
"id": 1,
"code": "text"
}
}
],
"features": [
{
"code": "text",
"name": "text",
"type": "BOOLEAN",
"value": 1
}
]
}
}