curl -X POST \
https://api.sakari.io/oauth2/token \
-H 'Content-Type: application/json' \
-d '{
"grant_type": "client_credentials",
"client_id": "12345678-1234-1234-1234-123456789012",
"client_secret": "87654321-4321-4321-4321-098765432121"
}'
{
"access_token": "<string>",
"token_type": "<string>"
}
curl -X POST \
https://api.sakari.io/oauth2/token \
-H 'Content-Type: application/json' \
-d '{
"grant_type": "client_credentials",
"client_id": "12345678-1234-1234-1234-123456789012",
"client_secret": "87654321-4321-4321-4321-098765432121"
}'
{
"access_token": "<string>",
"token_type": "<string>"
}
successful operation
The response is of type object
.