All requests must be authenticated using an API token. You can get your API Token by accessing the lowcode area.
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