Afficher les tags candidat
Vous pouvez récupérer les tags candidat créés dans l'application grâce à l'API.
Requête
Cette méthode permet de récupérer les tags candidat crés dans l'application :
GET /company/{companyID}/applicant/{applicantID}/traits
Paramètres
Paramètre | In | Type | Obligatoire | Description | Exemple |
---|---|---|---|---|---|
companyID | path | string | Identifiant de l'entreprise | N1zj8Md6zbdYZ70J | |
applicantID | path | string | id du candidat | gQayv9LNBod6LXE4 |
Exemple de requête
Requête cURL
curl -X GET 'https://api.flatchr.io/company/N1zj8Md6zbdYZ70J/applicant/gQayv9LNBod6LXE4/traits'
-H "Authorization: Bearer {token}"
-H 'Content-Type: application/json'
Réponse
Name | Type | Description |
---|---|---|
id | string | Identifiant |
tag_id | string | Identifiant du tag |
value | string | Valeur du tag |
Exemple de réponse
[
{
"id":"GjqBwprw1ydArDl4",
"tag_id":"KL5kDWnboM9yawrb",
"value":"Confirmé"
},
{
"id":"w67MknKVOldJ1203",
"tag_id":"5gQayv9L1Qp6LXE4",
"value":"Bac +3"
}
]