BigCommerce · Example Payload

Bigcommerce Createpages Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Createpages Example is an example object payload from BigCommerce, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "createPages",
  "method": "POST",
  "path": "/content/pages",
  "summary": "BigCommerce Create Pages",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "example-1",
      "example": {
        "channel_id": 1,
        "name": "Content Page",
        "is_visible": false,
        "parent_id": 0,
        "sort_order": 0,
        "type": "page",
        "body": "<div>Hello World!</div>",
        "is_homepage": false,
        "meta_title": "My Content page",
        "meta_keywords": "string",
        "meta_description": "string",
        "search_keywords": "string",
        "url": "/my-content-page"
      }
    }
  ],
  "responseExamples": []
}