BigCommerce · Example Payload

Bigcommerce Createcheckouttoken Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Createcheckouttoken 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": "createCheckoutToken",
  "method": "POST",
  "path": "/checkouts/{checkoutId}/token",
  "summary": "BigCommerce Create Checkout Token",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "example-1",
      "example": {
        "maxUses": 1,
        "ttl": 2
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "example-1",
      "example": {
        "data": {
          "checkoutToken": "beb3590088be88f59ba980d54a68df655cd8a1052a3e9caf535f3f820146c226",
          "meta": {}
        }
      }
    }
  ]
}