curl --request GET \
--url https://api.partoo.co/v2/org/{org_id}/plans \
--header 'x-APIKey: <api-key>'{
"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
}
]
}This endpoint lets you retrieve the organization’s plans.
You need to be a Provider to access this endpoint.
curl --request GET \
--url https://api.partoo.co/v2/org/{org_id}/plans \
--header 'x-APIKey: <api-key>'{
"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
}
]
}The authentication system on Partoo API is using API Key that should be put in the header of the request (the name of the header is x-APIKey). An api_key is linked to a user. This user's role will give you different access level to the API features.
Organization id
OK
The exhaustive list of the organization's plans.
Show child attributes
Plan's name.
presence_management, review_management, posts, messages, review_booster, bulk_modification, feedback_management, competitive_benchmark, messages_channel_sms, booking_links, webhooks "presence_management"
Plan's expiration date. If not set, the plan is active indefinitely.
"2026-01-01"
Plan's subscription date.
"2025-01-01"
[
{
"name": "presence_management",
"subscription_date": "2025-01-01",
"expiration_date": "2026-01-01"
},
{
"name": "review_management",
"subscription_date": "2025-01-01",
"expiration_date": null
}
]Was this page helpful?