Data Types

  1. string - double-quoted Unicode with backslash escaping

  2. boolean - true or false. If not required, supply false or do not supply field.

  3. Collection of string - an ordered sequence of strings

  4. integer - Digits 1-9, 0 and positive or negative. Minimum is -2,147,483,648 and maximum is 2,147,483,647  

  5. dates - All dates passed should not include a time component. Pass null or don't send when date is not available.
    Below are accepted formats for the date Nov 14, 2015

    • 2015-11-14
    • 11/14/2015
    • Nov 14, 2015

  6. null - empty. Use this if no value. Alternatively do not send that field.

  7. Collection of T - an ordered sequence of generic type T where T is specified in the property and consists of one of the common data types.

 

Examples

Name Description Type Additional information
PersonUid Encryped passcode for the authenticated user. string

Required

StartDate Start date of the request. A time component is not used when passing the start date. date

[Optional]

EndDate End date of the request. A time component is not used when passing the end date. date

[Optional]

Read more about json data types at https://en.wikipedia.org/wiki/JSON#Data_types.2C_syntax_and_example