BigCommerce · Example Payload

Bigcommerce Createcustomer Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Createcustomer 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": "createCustomer",
  "method": "POST",
  "path": "/customers",
  "summary": "BigCommerce Create a Customer",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "application/json",
      "example": {
        "firstName": "Jane",
        "lastName": "Doe",
        "email": "janedoe@example.com",
        "password": "string",
        "acceptsMarketingEmails": true,
        "customFields": [
          {
            "fieldId": "25",
            "fieldValue": "Leave in backyard"
          }
        ]
      }
    }
  ],
  "responseExamples": []
}