BigCommerce · Schema

Activate

Request definition for activation endpoint.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
variation_id string The identifier for the variation to activate.
which string Which configuration to use.
View JSON Schema on GitHub

JSON Schema

bigcommerce-activate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Activate",
  "title": "Activate",
  "description": "Request definition for activation endpoint.",
  "required": [
    "variation_id"
  ],
  "properties": {
    "variation_id": {
      "description": "The identifier for the variation to activate.",
      "type": "string"
    },
    "which": {
      "description": "Which configuration to use.",
      "type": "string",
      "enum": [
        "original",
        "last_activated",
        "last_created"
      ]
    }
  },
  "x-internal": false
}