Oauth2/Token
Get token
Get a token for authentication
POST
/oauth2/tokenclient_idstring
client_secretstring
grant_type?string
Default
"client_credentials"Response Body
curl -X POST "https://api.dashboard.data-driven.fr/v3/oauth2/token" \
-H "Content-Type: application/json" \
-d '{
"client_id": "string",
"client_secret": "string"
}'{
"access_token": "string",
"token_type": "string",
"expires_in": 0
}{
"message": "string",
"errors": [
{
"message": "string",
"data": null
}
]
}