curl --request PATCH \
--url https://api.example.com/v1/subscription \
--header 'Content-Type: application/json' \
--data '"<string>"'{
"plan": "PLAN_TYPE_UNSPECIFIED",
"seats": 123,
"instances": 123,
"activeInstances": 123,
"expiresTime": "2023-11-07T05:31:56Z",
"trialing": true,
"orgName": "<string>"
}Updates the enterprise license subscription. Permissions required: bb.settings.set
curl --request PATCH \
--url https://api.example.com/v1/subscription \
--header 'Content-Type: application/json' \
--data '"<string>"'{
"plan": "PLAN_TYPE_UNSPECIFIED",
"seats": 123,
"instances": 123,
"activeInstances": 123,
"expiresTime": "2023-11-07T05:31:56Z",
"trialing": true,
"orgName": "<string>"
}If set to true, and the subscription is not found, a new subscription will be created.
In this situation, update_mask is ignored.
The body is of type string.
Was this page helpful?