Comment
This endpoint lets you create new comments for a given candidate_reference.
comment creation
POST
https://www.welcomekit.co/api/v1/external/comments
Query Parameters
Name
Type
Description
candidate_reference*
string
Candidate reference
content
string
Comment content (plain text, html or markdown)
{
"id":83316,
"content":"<p>Foo</p>\n",
"raw_content":"Foo"
}
Request example
curl -X POST "https://www.welcomekit.co/api/v1/external/comments" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer WK_API_KEY" \
-d @- <<EOF
{
"candidate_reference": "wttj-d655345409a6097309156b05",
"content": "Foo"
}
EOF
Last updated
Was this helpful?