Read a specific Candidate's list of files on the candidate’s profile under the Files tab.
Request
GET https://api.comeet.co/candidates/{uid}/files
Request path parameters:
Name | Type | Optional | Description |
---|---|---|---|
uid | string | Required | UID of the candidate |
Response
[
{
"url": "https://app.comeet.co/api/v1/download/...",
"name": "file-1.text"
},
{
"url": "https://app.comeet.co/api/v1/download/...",
"name": "file-2.txt"
}
]
{
"status": 401,
"message": "You are trying to access a candidate that was removed since it was a duplicate of another candidate",
"error": "duplicate_candidate"
}
Note that the URL to the file has a time limit of 15 minutes. If it expires, read the candidate object again to refresh the URL.