Authentication
Authenticate with client credentials
You can authenticate by presenting a client’s credentials. The server will respond by sending an access token.
POST /security/login/credentials HTTP/1.1
Host: [DIGITA_HOST]
Content-Type: application/json
{
"client_id": [CLIENT_ID],
"client_secret": [CLIENT_SECRET]
}
{
"access_token": "..."
}