Skip to main content

Créer un commentaire

Vous pouvez créer un commentaire sur un candidat grâce à l'API.

token

Pour créer un commentaire il faut s'authentifier avec un token utilisateur qui peut être récupéré grâce à la méthode Login

Requête

Cette méthode permet de créer un commentaire sur un candidat :

POST /company/{companyID}/applicant/{applicantID}/comment

Run in Postman

Paramètres

ParamètreInTypeObligatoireDescriptionExemple
companyIDpathstring
✔️
Identifiant de l'entreprise0GjqBwprWAdArDl4
applicantIDpathstring
✔️
id du candidat
typequerystring
✔️
type du [commentaire]note
privatequerybooleanLe commentaire est-il privé ?true
filequeryfilePièce jointezoGaHqRvJ/CV_test.pdf
textquerystringContenu du commentaireEn réponse au précédent commentaire : très bon niveau en anglais
reply_toquerystringid du [commentaire] parentj4hq6zbqYZ20JA1z

Exemples de requête

Requête cURL
curl -X POST 'https://api.flatchr.io/company/0GjqBwprWAdArDl4/applicant/ADYjo9mGxZdkN0ry/comment'
-H "Authorization: Bearer {user_token}"
-H 'Content-Type: application/json'
-F 'text="En réponse au précédent commentaire : très bon niveau en anglais"' \
-F 'file=@"zoGaHrRvJ/CV_test.pdf"' \
-F 'private="true"' \
-F 'reply_to="j4hq6zbqYZ20Jn1z"'

Réponse

NameTypeDescription
idintegerIdentifiant du commentaire
textstringLe texte du commentaire
privatebooleanLe commentaire est-il privé ?
favoritebooleanLe commentaire est-il en favori ?
created_byintegerIdentifiant de l'auteur du commentaire
created_attimestampDate de création du commentaire
reply_tointegerIdentifiant du commentaire parent si ce commentaire est une réponse à un commentaire déja existant
authorauthorAuteur du commentaire
attachmentsattachmentsLes pièces jointes du commentaire
ratings[ratings]

Exemple de réponse

{
"id": 3620,
"text": "En réponse au précédent commentaire : très bon niveau en anglais",
"private": true,
"favorite": false,
"created_by": 391,
"created_at": "2022-02-15T17:00:00.264Z",
"reply_to": 3618,
"author": {
"id": "lVq5r6pYXk9AmMvP",
"firstname": "XXXX",
"lastname": "XXXX"
},
"attachments": [],
"ratings": []
}