Query Parameter Types
This is useful if you're sending requests to the API endpoints and not using
our JS Client. For example, when using cURL or Postman.
Strings
<parameter_name>=<value>
.
encode them.
+
or%20
:
a value can be encoded.
Integers
<parameter_name>=<value>
.
Boolean
<parameter_name>=<value>
.
Date and DateTime
<parameter_name>=<value>
. The datemust be in the format
YYYY-MM-DD
.
YYYY-MM-DDTHH:MM:SSZ
. Pleasenote that the
T
and Z
here are fixed.
Array
<parameter_name>[]=<value>
. You can also specify the index of eachparameter in the brackets
<parameter_name>[0]=<value>
.
-g
parameter passed to curl
disables errors being thrownfor using the brackets. Read more
here.
Object
<parameter_name>[<key>]=<value>
.
Modified at 2023-10-10 11:56:42