Skip to content

Authorization

Adelion API uses JWT to authenticate API calls. When authentication is successful, AccessToken is returned, and it should be included with every API call that requires authorization. It should be included in the request in the Authorization header:

Request
POST /api/endpoint HTTP/1.1
Host: adelion.com
Authorization: Bearer [AccessToken]
Content-Type: application/json
[payload]