SAP Commerce Cloud · Schema
IntegrationCustomer
B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail
Properties
| Name | Type | Description |
|---|---|---|
| uid | string | Customer unique identifier |
| name | string | Customer full name |
| customerID | string | Customer ID |
| addresses | array | Customer addresses |
| integrationKey | string | Unique integration key |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IntegrationCustomer",
"title": "IntegrationCustomer",
"type": "object",
"properties": {
"uid": {
"type": "string",
"description": "Customer unique identifier"
},
"name": {
"type": "string",
"description": "Customer full name"
},
"customerID": {
"type": "string",
"description": "Customer ID"
},
"addresses": {
"type": "array",
"items": {
"type": "object",
"properties": {
"streetname": {
"type": "string"
},
"streetnumber": {
"type": "string"
},
"postalcode": {
"type": "string"
},
"town": {
"type": "string"
},
"country": {
"type": "string"
}
}
},
"description": "Customer addresses"
},
"integrationKey": {
"type": "string",
"description": "Unique integration key"
}
}
}