Discussions

Ask a Question
Back to All

REST call returns `forbidden.http.exception`

Hi,

I query the /auth endpoint to get the first bearer token and the response is

{
  "success": true,
  "data": {
    "token": "<TOKEN>"
  }
} 

However, using this token in the next request, i.e. for endpoint https://api.personio.de/v1/company/attendances the response is

{
  "success": false,
  "error": {
    "message": "personio.core.api.exceptions.api.forbidden.http.exception",
    "code": 0
}

What is the problem?
The API Key I'm using has read and write access for attendances.

Thanks