Cette documentation API sâadresse aux utilisateurs disposant dâun site carriĂšre. Elle dĂ©taille le mĂ©canisme dâauthentification basĂ© sur un client_id et un client_secret, permettant dâobtenir un access_token pour accĂ©der aux ressources protĂ©gĂ©es.
Elle explique Ă©galement comment transmettre une candidature via un webhook API, en lâassociant Ă une opportunitĂ© existante dans lâespace utilisateur.
https://app.marvinrecruiter.com/api/
POST /website/auth/authorize
| Champ | Type | Obligatoire | Description |
|---|---|---|---|
| client_id | string | â Oui | Identifiant client |
| client_secret | string | â Oui | Secret client |
{
"client_id": "your_client_id",
"client_secret": "your_client_secret"
}
| Code | Message |
|---|---|
| 200 OK | { "authorization_code": "abcd1234", "expiresAt": "2024-02-18T12:00:00Z" } |
| 401 Unauthorized | { "message": { "error": "Invalid client_id or client_secret" } } |