Structures and paradigms for the Trackstar API
X-Request-Id: abc123
"error"
.
GET /wms/returns
for the Cool WMS
integration)
will return a 501
status code with the following body:
limit
query parameter.
Endpoints implement pagination logic and return a next_token
, which will be null
if there is no additional data.
Valid next_token
s can then be passed into the endpoint’s page_token
parameter to get the next page of results.
Leave this field out to get the first page.
= or eq
(equal),
neq
(not equal), gt
(greater than), lt
(less than), gte
(greater than or equal),
lte
(less than or equal), in
(in a list), and nin
(not in a list).
For in
and nin
the API accepts a comma separated string e.g. value_1,value_2
.
More details can be found in each individual endpoint’s documentation.
429 Too Many Requests
response.
The API will return the following headers to indicate your current rate limit status:
x-rate-limit-limit
: The total number of requests allowed per second.x-rate-limit-remaining
: The number of requests you have remaining in the current second.x-rate-limit-reset
: The epoch time when your rate limit will reset.x-rate-limit-retry-after
: The number of seconds you should wait before making another request.