Discussions
401 Unauthorized status in /v1/recruiting/applications
about 1 year ago by Eric Spielhaus
Hallo,
ich kann über die API keine Bewerbungen anlegen.
Der Request zum Abruf des Bearer Tokens funktioniert wie er soll, aber bei der Erstellung einer Bewerbung bekomme ich dann die Meldung: 401 Unauthorized
$client = new \GuzzleHttp\Client();
$response = $client->request('POST', 'https://api.personio.de/v1/recruiting/applications', [
'body' => json_encode($data),
'headers' => [
'X-Company-ID' => 123456,
'accept' => 'application/json',
'authorization' => 'Bearer '.$personioToken,
'content-type' => 'application/json',
],
]);