BigCommerce · Schema

301RedirectRead

Full detail of a Redirect, optionally including the full destination URL.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
id integer
site_id integer
from_path string
to object
to_url string Full destination URL for the redirect. Must be explicitly included via URL parameter.
View JSON Schema on GitHub

JSON Schema

bigcommerce-301redirectread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/301RedirectRead",
  "title": "301RedirectRead",
  "type": "object",
  "description": "Full detail of a Redirect, optionally including the full destination URL.",
  "properties": {
    "id": {
      "type": "integer"
    },
    "site_id": {
      "type": "integer"
    },
    "from_path": {
      "type": "string",
      "example": "/old-url"
    },
    "to": {
      "$ref": "#/components/schemas/RedirectTo"
    },
    "to_url": {
      "type": "string",
      "description": "Full destination URL for the redirect. Must be explicitly included via URL parameter.",
      "format": "uri",
      "example": "https://store-domain.com/new-url"
    }
  }
}