commercetools · Schema

CustomerSignInResult

The result of a customer creation or sign-in operation, including the customer and any merged cart.

CommerceComposable CommerceE-CommerceGraphQLRESTSDK

Properties

Name Type Description
customer object
cart object
View JSON Schema on GitHub

JSON Schema

commercetools-customersigninresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomerSignInResult",
  "title": "CustomerSignInResult",
  "type": "object",
  "description": "The result of a customer creation or sign-in operation, including the customer and any merged cart.",
  "required": [
    "customer"
  ],
  "properties": {
    "customer": {
      "$ref": "#/components/schemas/Customer"
    },
    "cart": {
      "$ref": "#/components/schemas/Cart"
    }
  }
}