Remind every unfinished interview in a campaign
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/interview-campaigns/{campaign_id}/remind-all/"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/interview-campaigns/{campaign_id}/remind-all/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request POST \
--url https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/interview-campaigns/{campaign_id}/remind-all/ \
--header 'Authorization: Bearer <token>'{
"reminded": 123,
"skipped": 123
}{
"error": "Authentication credentials were not provided."
}{
"error": "You do not have permission to perform this action."
}{
"error": "Not found."
}Interviews
Remind every unfinished interview in a campaign
Send a reminder (or a “finish your interview” nudge for in-progress ones) to the assignee of each unfinished interview in the campaign. Admin only.
Ineligible interviews are skipped rather than failing the batch: completed interviews, imported transcripts, interviews with no assignee, interviews assigned to the caller, and interviews whose scheduled invitation has not been sent yet (use the interview’s send-now action for those).
POST
/
projects
/
{project_id}
/
interview-campaigns
/
{campaign_id}
/
remind-all
/
Remind every unfinished interview in a campaign
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/interview-campaigns/{campaign_id}/remind-all/"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/interview-campaigns/{campaign_id}/remind-all/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request POST \
--url https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/interview-campaigns/{campaign_id}/remind-all/ \
--header 'Authorization: Bearer <token>'{
"reminded": 123,
"skipped": 123
}{
"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 campaign