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>"
}UpdateSubscription updates the subscription for the given Organisation. This endpoint can be used to increase the board quota of an organisation. It will update the billing information to reflect the amount of boards that are allowed to be published.
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>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
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 is the type of board that the Organisation is allowed to publish - Hub or Regular.
hub, regular No Content