Data Type Formats

Data Type in documentDescriptionExample
intInteger1
StringStringThis is a string
DateISO 8601 date string YYYY-MM-DD2012-03-31
DateTimeISO 8601 datetime string YYYY-MM-DD HH:mm:SS2012-03-31 23:59:59
A(n)Alpha string. [n] characters requiredAlpha string
AN(n)Alphanumeric string. [n] characters requiredAlphanumeric string
N(n)Numeric string. [n] characters required. Number is left-padded with zeroes.000123
doubleNumeric string with a decimal point. Only point is used (no commas or other characters for decimal point)34.56
BASE64String used to pass binary data. The binary data should be converted to base64 standard.bXlwb3MgZGVtbw==
XMLSimple in place XML array.

<body>
  <param>1</param>
  <value>2</value>
</body>