Supprimer un commentaire
Vous pouvez supprimer un commentaire sur un candidat grâce à l'API.
Requête
Cette méthode permet de supprimer un commentaire sur un candidat :
DELETE /company/{companyID}/applicant/{applicantID}/comment/{commentID}
Paramètres
Paramètre | In | Type | Obligatoire | Description | Exemple |
---|---|---|---|---|---|
companyID | path | string | Identifiant de l'entreprise | 0GjqBwprWAdArDl4 | |
applicantID | path | string | id du candidat | ADYjo9mGxZdkR0ry | |
commentID | path | string | id du [commentaire] | kZ1lVpD9a4o19We7 |
Exemples de requête
Requête cURL
curl -X DELETE 'https://api.flatchr.io/company/0GjqNwprWAdArDl4/applicant/ADYjo9mGxZdkRAry/comment/kZ1lVpD9a4o19We7'
-H "Authorization: Bearer {token}"
-H 'Content-Type: application/json'
Réponse
Name | Type | Description |
---|---|---|
statusCode | integer | Code statut de la requête |
message | string | Message expliquant le statut |
Exemple de réponse
{
"statusCode": 200,
"message": "Comment deleted"
}