v1

latestOpenAPI 3.1.0© Copyright Partoo2026-07-26163503484.0 KB
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

org_idinteger

Unique identifier of an organization in Partoo.

status'success'

Request status

Example response

{
  "org_id": 42
}