ChangePlanRequest
Request to upgrade/downgrade an organization's plan
Properties
| Property | Type | Required | Description |
|---|---|---|---|
plan_id |
string | Yes | |
stripe_payment_method_id |
any | No |
View JSON Schema
{
"type": "object",
"description": "Request to upgrade/downgrade an organization's plan",
"required": [
"plan_id"
],
"properties": {
"plan_id": {
"type": "string",
"format": "uuid"
},
"stripe_payment_method_id": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/components/schemas/StripePaymentMethodId"
}
]
}
}
}