Download all interview files as a zip
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/coach-conversations/{coach_conversation_id}/local-documents/download-all/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/coach-conversations/{coach_conversation_id}/local-documents/download-all/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/coach-conversations/{coach_conversation_id}/local-documents/download-all/ \
--header 'Authorization: Bearer <token>'"<string>"{
"error": "Authentication credentials were not provided."
}{
"error": "You do not have permission to perform this action."
}{
"error": "Not found."
}Interviews
Download all interview files as a zip
Download every file uploaded during the interview as a single zip archive (entries ordered by upload time; duplicate filenames are suffixed).
Non-admins can only download files from interviews assigned to them or that they created. Returns 404 when the interview has no files.
GET
/
projects
/
{project_id}
/
coach-conversations
/
{coach_conversation_id}
/
local-documents
/
download-all
/
Download all interview files as a zip
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/coach-conversations/{coach_conversation_id}/local-documents/download-all/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/coach-conversations/{coach_conversation_id}/local-documents/download-all/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/coach-conversations/{coach_conversation_id}/local-documents/download-all/ \
--header 'Authorization: Bearer <token>'"<string>"{
"error": "Authentication credentials were not provided."
}{
"error": "You do not have permission to perform this action."
}{
"error": "Not found."
}Authorizations
BearerAuthTokenAuth
Use Authorization: Bearer
Path Parameters
UUID of the project
UUID of the interview (coach conversation)
Response
Zip archive of the interview files
The response is of type file.