CXML
The cXML containing the order to be processed. It consists of a header that contains fields such as order id, order date,ship to and tax. The payload contains information pertaining to individual items ordered. CXML
export interface CXML {
'dsSignature'?: Array<DsSignature>;
'headerOrMessageOrRequestOrResponse'?: Array<object>;
'payloadID'?: string;
'signatureVersion'?: string;
'timestamp'?: string;
'version'?: string;
'xmlLang'?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
dsSignature | Optional | Array<DsSignature> | {Array<DsSignature>} CXML |
headerOrMessageOrRequestOrResponse | Optional | Array<object> | {Array<object>} CXML |
payloadID | Optional | string | {string} CXML |
signatureVersion | Optional | string | {string} CXML |
timestamp | Optional | string | {string} CXML |
version | Optional | string | {string} CXML |
xmlLang | Optional | string | {string} CXML |