API Readme

Where to find API Key

Once you have logged in. Navigate to Settings --> General

You will find the following:

  • Account ID
  • API Key

/general API

Required Headers:

  • x-account-id
  • x-api-key

Example Usage:

curl --request GET \
     --url https://api.delivyr.net/general/templates \
     --header 'accept: application/json' \
     --header 'x-account-id: <ACCOUNT ID>' \
     --header 'x-api-key: <API KEY>'

/app API

Required Headers:

  • x-account-id

  • Authorization <--- Use the API Key

Example Usage:

curl --request GET \
     --url https://api.delivyr.net/app/templates \
     --header 'accept: application/json' \
     --header 'x-account-id: <ACCOUNT ID>'
     --header 'Authorization: <API KEY>'


Did this page help you?