If the WhatsApp integration is turned on for the company this endpoint can be used to relay WhatsApp messages from candidates and it will be stored by us and displayed on the candidate details page
Headers:
Authorization : {token}
Content-Type : application/json
Condition
This api call will only work if the client has WhatsApp integration enabled on Simplify.hr:
Result codes:
403 Forbidden
200 Ok (Message created)
400 Bad request
500 Internal server error
Properties
Name | Type | Required | Description |
---|---|---|---|
CandidateId | int | Y | Id of the candidate.Can be obtained from the Candidate create call |
Message | string | Y | WhatsApp message being relayed |
MessageSentDate | string | Y | Date/Time stamp of when the message leaves the callers system.Must be in the following format dd/MM/yyyy HH:mm:ss |
Sample post:
{
"CandidateId":3046346,
"Message":"Good day.Can I please have an update on my job application?",
"MessageSentDate" : "18/03/2024 11:53:00"
}