Comment
This endpoint lets you create new comments for a given candidate_reference.
This endpoint requires
comments_w
, and candidates_rw
or my_candidates_rw
scopes.post
https://www.welcomekit.co/api/v1/external/
comments
comment creation
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 modified 2yr ago