Skip to main content
PUT
/
organisations
/
{organisation_id}
/
billing
/
update-subscription
Update Subscription
curl --request PUT \
  --url https://platform.versori.com/api/organisations/v1/organisations/{organisation_id}/billing/update-subscription \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "boardQuota": 123,
  "boardType": "hub"
}
'
{
  "code": "<string>",
  "message": "<string>",
  "cause": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organisation_id
string
required

Body

application/json
boardQuota
integer

BoardQuota is the maximum number of Switchboard boards the Organisation is allowed to publish. It is also used to determine the amount of free executions and users that an organisation is allowed.

boardType
enum<string>

BoardType is the type of board that the Organisation is allowed to publish - Hub or Regular.

Available options:
hub,
regular

Response

No Content