BigCommerce · Example Payload

Bigcommerce Getcustomerstoredinstruments Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Getcustomerstoredinstruments 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": "getCustomerStoredInstruments",
  "method": "GET",
  "path": "/customers/{customerId}/stored-instruments",
  "summary": "BigCommerce Get Stored Instruments",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "example-1",
      "example": [
        {
          "type": "stored_card",
          "token": "84596bea275fa254da820056bdc3e495bdf01fd11c51b0336347d447ee16200c",
          "is_default": true,
          "brand": "VISA",
          "expiry_month": 1,
          "expiry_year": 0,
          "issuer_identification_number": "411111",
          "last_4": "1111",
          "billing_address": {
            "first_name": "Tester",
            "last_name": "Tester",
            "email": "example@email.com",
            "company": "Test Company",
            "address1": "1 Sample Street",
            "address2": "Apt 1",
            "city": "Las Vegas",
            "postal_code": "90854",
            "state_or_province": "Nevada",
            "state_or_province_code": "NV",
            "country_code": "US",
            "phone": "101-192-0293"
          }
        }
      ]
    },
    {
      "status": "401",
      "contentType": "application/json",
      "example": {
        "code": 401,
        "message": "Unauthorized"
      }
    },
    {
      "status": "403",
      "contentType": "application/json",
      "example": {
        "code": 403,
        "message": "Missing scope"
      }
    }
  ]
}