Attach documents to a candidate

This endpoint lets you attach new documents for a given candidate_reference.
This endpoint requires documents_rw, and my_candidtates_rw or candidates_rw scope.
post
https://www.welcomekit.co/api/v1/external/
documents
documents to a candidate
Request example
curl -X POST "https://www.welcomekit.co/api/v1/external/documents" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer WK_API_KEY" \
-d @- <<EOF
{
"candidate_reference": "wttj-d655345409a6097309156b05",
"remote_file_urls": [
{"filename": "resume", "url": "http://example.com/resume.pdf"},
{"filename": "portfolio", "url": "http://example.com/portfolio.pdf"}
]
}
EOF