Authentication

Authentication management in our REST services

The authentication applied to our REST services is token-based. This token is unique for each environment and will be provided by the Eden development team. The token must be included in all requests to the API using an HTTP header called "Authorization". Below are examples of how to send this header in the most common languages and environments for consuming an HTTP API:

Usage examples

curl -X 'POST' 'http://middleware-staging.dev-land.space/api/v1/orders/' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Token s8CTsfYiLrJMK21u0opHB5Mi7ATfQ5hpeH9NJQUT8'
circle-info

How to get your API token? To obtain your api_token, you must have access to a testing environment, where we will provide you with all the necessary credentials to develop your integration with our services. If you do not yet have access to a testing environment, please contact our integrations team by sending an email to [email protected]envelope

Last updated