create_offer
curl --request POST \
--url https://rest.hotfix.jobs/v1/employer/applications/{application_id}/offer \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"body_markdown": "<string>",
"pay": "<string>",
"start_date": "<string>"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({body_markdown: '<string>', pay: '<string>', start_date: '<string>'})
};
fetch('https://rest.hotfix.jobs/v1/employer/applications/{application_id}/offer', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://rest.hotfix.jobs/v1/employer/applications/{application_id}/offer"
payload = {
"body_markdown": "<string>",
"pay": "<string>",
"start_date": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){}Offers
create_offer
Create a pending offer and its magic link. Pay and start date are required. Does not email the applicant. MCP tool: create_offer. One active letter at a time. Accept moves them to Hired. Decline leaves them Interviewing. Not e-sign. A person still hits Send.
POST
/
v1
/
employer
/
applications
/
{application_id}
/
offer
create_offer
curl --request POST \
--url https://rest.hotfix.jobs/v1/employer/applications/{application_id}/offer \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"body_markdown": "<string>",
"pay": "<string>",
"start_date": "<string>"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({body_markdown: '<string>', pay: '<string>', start_date: '<string>'})
};
fetch('https://rest.hotfix.jobs/v1/employer/applications/{application_id}/offer', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://rest.hotfix.jobs/v1/employer/applications/{application_id}/offer"
payload = {
"body_markdown": "<string>",
"pay": "<string>",
"start_date": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){}Authorizations
Employer session JWT from Better Auth.
Path Parameters
Application UUID.
Body
application/json
Markdown letter.
Pay as you want it printed on the letter.
Start date as you want it printed.
Internal notes. Not on the letter.
Optional expiry. No default. Without a date the letter stays open until Accept, Decline, or Rescind.
Response
200 - application/json
Success
The response is of type object.