All requests must be authenticated using an API token. You can request your API token to our team through the chat (we'll give one to you in a few minutes.)
With the API token in hands, you can use it in requests via query parameters, via payload argument, or via HTTP header:
# via query parameter
curl "https://yourawesomecompany.api.jestor.com/org/get?api_token=<yourtoken>"
# via header
curl -h "Authorization: bearer <yourtoken>" \
https://yourawesomecompany.api.jestor.com/org/get
# via request body
curl --header "Content-Type: application/json" \
--request POST \
--data '{"api_token":"your token","otherdata":"xyz"}' \
https://yourawesomecompany.api.jestor.com/org/update