Subscriptions
Organizations
Update organization's plans
This endpoint lets you update the plans of an organization.
You need to be a Provider to access this endpoint.
⚠️ You need to send all the plans, those not sent will be removed. We advise you to call the GET endpoint first. ⚠️
post/org/{org_id}/plans
Path parameters
org_idinteger required
Unique ID of the organization to which the resource belongs. Only PROVIDER users can access resources from a different organization than their own. If you are not a PROVIDER, this will default to the ID of your organization.
Request body
Example request
{
"plans": [
{
"name": "presence_management",
"expiration_date": "2026-01-01"
},
{
"name": "review_management"
}
]
}Response
OK
Example response
{
"org_id": 42
}