Kong · Schema

BillingSubscriptionCancel

Request for canceling a subscription.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
timing object If not provided the subscription is canceled immediately.
View JSON Schema on GitHub

JSON Schema

kong-billingsubscriptioncancel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BillingSubscriptionCancel",
  "title": "BillingSubscriptionCancel",
  "description": "Request for canceling a subscription.",
  "type": "object",
  "properties": {
    "timing": {
      "description": "If not provided the subscription is canceled immediately.",
      "example": "immediate",
      "default": "immediate",
      "oneOf": [
        {
          "$ref": "#/components/schemas/BillingSubscriptionEditTimingEnum"
        },
        {
          "$ref": "#/components/schemas/DateTime"
        }
      ]
    }
  }
}