Data types
1 min
data type description example string string with configurered length (default 200 chars) "this is a string" integer number 0 9 with leading chars possible 235 3 decimal decimal number decimal separator programmatically as point no thousands separator necessary later controlled by the user's culture leading signs are possible 3 22 1000 22 54 25 boolean true false guid global unique identifier character string representing a unique value consists of 36 characters in 8 4 4 12 format the characters come from the hexadecimal system and can thus be a digit 0 9 or a letter a f „bfd59a0e 992c 4e0d 90da d15ec8f881ee“ array ordered list of values separated by "," starts with "\[" and ends with "]" \[ "value1", "value2", "value3"] datetime date/time information is specified as a string in the format yyyy mm ddthh\ mm\ ss fffz 2022 02 02t07 12 55 987z "convertallcustomdatatostrings" false ensures that the underlying data type is returned in the response e g boolean "custom 005" false instead of "custom 005" "1" e g number "custom 006" 12 instead of "custom 006" "12" attention the respective data types are different for each entity if the underlying data type changes, the respective data type in the response also changes automatically