SerenAI

Pay Per Call Agentic Commerce

ChangePlanRequest

Request to upgrade/downgrade an organization's plan

Properties

PropertyTypeRequiredDescription
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"
        }
      ]
    }
  }
}