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.

comment creation

POST https://www.welcomekit.co/api/v1/external/comments

Query Parameters

{
  "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