seed_automation_pack
curl --request POST \
--url https://rest.hotfix.jobs/v1/employer/automations/seed-pack \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://rest.hotfix.jobs/v1/employer/automations/seed-pack', 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/seed-pack"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text){
"data": [
{
"id": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa",
"name": "Note new applications after 3 days",
"status": "paused",
"is_default_pack": true
}
]
}Automations
seed_automation_pack
Install the starting automation pack for this company, paused. Safe to call again. If the pack is already installed, returns the current list. Does not send email. MCP tool: seed_automation_pack.
POST
/
v1
/
employer
/
automations
/
seed-pack
seed_automation_pack
curl --request POST \
--url https://rest.hotfix.jobs/v1/employer/automations/seed-pack \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://rest.hotfix.jobs/v1/employer/automations/seed-pack', 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/seed-pack"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text){
"data": [
{
"id": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa",
"name": "Note new applications after 3 days",
"status": "paused",
"is_default_pack": true
}
]
}Authorizations
Employer session JWT from Better Auth.
Response
200 - application/json
Success
The response is of type object.