Alokai
You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x

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

NameRequiredTypeDescription
dsSignatureOptionalArray<DsSignature>{Array<DsSignature>} CXML
headerOrMessageOrRequestOrResponseOptionalArray<object>{Array<object>} CXML
payloadIDOptionalstring{string} CXML
signatureVersionOptionalstring{string} CXML
timestampOptionalstring{string} CXML
versionOptionalstring{string} CXML
xmlLangOptionalstring{string} CXML

Referenced Types

On this page