Subscriptions
Businesses
Get Business's plans
This endpoint lets you retrieve the business's plans.<br /> You need to be a Provider to access this endpoint.
get/business/{business_id}/plans
Path parameters
business_idstring required
Business id.
It may be replaced by c-{code} where code is the store code, which should be unique per organization. This can be used only for ORG_ADMIN, GROUP_MANAGER and BUSINESS_MANAGER users.
Response
OK
Example response
{
"plans": [
{
"name": "presence_management",
"enabled": true,
"subscription_date": "2025-01-01",
"expiration_date": "2026-01-01"
},
{
"name": "review_management",
"enabled": false,
"subscription_date": "2025-01-01",
"expiration_date": null
}
],
"org_plans": [
{
"name": "presence_management",
"subscription_date": "2025-01-01",
"expiration_date": "2026-01-01"
},
{
"name": "review_management",
"subscription_date": "2025-01-01",
"expiration_date": null
}
],
"active_plans": [
{
"name": "presence_management",
"expiration_date": "2026-01-01",
"enabled": true
}
]
}