archive_automation
curl --request POST \
--url https://rest.hotfix.jobs/v1/employer/automations/{automation_id}/archive \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://rest.hotfix.jobs/v1/employer/automations/{automation_id}/archive', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://rest.hotfix.jobs/v1/employer/automations/{automation_id}/archive"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)Automations
archive_automation
Archive one hiring automation. Run history stays. Does not send email. MCP tool: archive_automation.
POST
/
v1
/
employer
/
automations
/
{automation_id}
/
archive
archive_automation
curl --request POST \
--url https://rest.hotfix.jobs/v1/employer/automations/{automation_id}/archive \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://rest.hotfix.jobs/v1/employer/automations/{automation_id}/archive', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://rest.hotfix.jobs/v1/employer/automations/{automation_id}/archive"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)