Authentication
Get Token
POST
Token URL: https://accounts.trysolvio.ai/auth/realms/developer/protocol/openid-connect/token
1. To authenticate, you need to generate an access_token
by sending your client_id
, client_secret
and grant_type
as the body paramters of the POST
method request to the Token URL
.
2. Refer to the section 'Get Client Id and Secret' to generate / find your client_id
and client_secret
3. Pass the generated access_token
in the Authorization
header as Bearer <TOKEN>
to authenticate each API request.
Request Body
Name | Type | Description |
---|---|---|
client_id | string | Your Client ID, get this from the developer dashboard. |
client_secret | string | Your Client Secret, get this from developer dashboard |
grant_type | string |
|
Last updated