BigCommerce · Schema

ValidateCustomerCredentialsResponseObject

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
customer_id integer Returns the customer ID.
is_valid boolean indicates if the provided credentials are valid.
View JSON Schema on GitHub

JSON Schema

bigcommerce-validatecustomercredentialsresponseobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ValidateCustomerCredentialsResponseObject",
  "title": "ValidateCustomerCredentialsResponseObject",
  "type": "object",
  "properties": {
    "customer_id": {
      "type": "integer",
      "nullable": true,
      "description": "Returns the customer ID."
    },
    "is_valid": {
      "type": "boolean",
      "description": "indicates if the provided credentials are valid."
    }
  },
  "x-internal": false
}