SAP Commerce Cloud · Schema

AssistedSessionRequest

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
customerId string Customer ID to assist
baseSite string Base site identifier
cartId string Optional specific cart to work with
View JSON Schema on GitHub

JSON Schema

sap-commerce-cloud-assistedsessionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AssistedSessionRequest",
  "title": "AssistedSessionRequest",
  "type": "object",
  "required": [
    "customerId",
    "baseSite"
  ],
  "properties": {
    "customerId": {
      "type": "string",
      "description": "Customer ID to assist"
    },
    "baseSite": {
      "type": "string",
      "description": "Base site identifier"
    },
    "cartId": {
      "type": "string",
      "description": "Optional specific cart to work with"
    }
  }
}