BigCommerce · Example Payload

Bigcommerce Getcategorymetafields Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Getcategorymetafields 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": "getCategoryMetafields",
  "method": "GET",
  "path": "/catalog/categories/{category_id}/metafields",
  "summary": "BigCommerce Get Category Metafields",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "data": [
          {
            "id": 6,
            "key": "Location",
            "value": "4HG",
            "namespace": "Warehouse Locations",
            "permission_set": "app_only",
            "resource_type": "category",
            "resource_id": 111,
            "description": "Location in the warehouse",
            "date_created": "1973-01-20T21:34:57.903Z",
            "date_modified": "1990-12-30T00:29:23.515Z"
          },
          {
            "id": 7,
            "key": "Location",
            "value": "4HG",
            "namespace": "Warehouse Locations",
            "permission_set": "read",
            "resource_type": "category",
            "resource_id": 111,
            "description": "Location in the warehouse",
            "date_created": "1973-01-20T21:34:57.903Z",
            "date_modified": "1990-12-30T00:29:23.515Z"
          }
        ],
        "meta": {
          "pagination": {
            "total": 2,
            "count": 2,
            "per_page": 50,
            "current_page": 1,
            "total_pages": 1,
            "links": {
              "current": "?page=1&limit=50"
            }
          }
        }
      }
    }
  ]
}