An OAuth token is required to access the API. The API token must be included via an auth header with its value. It can grant API permissions only to a specific Mobile Console Account for a limited time. The time limit can be adjusted by WalkMe if needed.
The token can be obtained using the following HTTP call:

POST /api/scim/auth HTTP/1.1
Host: prodeu-dtapi.abbi.io
Content-Type: application/json
{
    "key": "<Client API Key>",
    "secret": "<Client API Secret>"
}

Response

{
    "access_token": "b4afabed-957b-4a52-830c-07687eda8ca0",
    "expires_in": 86400
}