Authentication
How to authenticate your requests to Daven's API
The API uses OAuth 2.0 Client Credentials Grant for authentication. When authenticating, you will need to provide a Bearer Token in the Authorization header of your requests.
Bearer Token
To get a token, you'll need to call the Oauth2/token endpoint with the following body.
{
"client_id": "your_client_id",
"client_secret": "your_client_secret",
"grant_type": "client_credentials"
}