Getting Started
Endpoints
- Applications
- Candidates
- Jobs
- Feedback
- Interviews
- Users
- Files
- Settings
- User Categories
- Job Categories
- Email Templates
- Manage Tags
- Pipeline stages
- Application and Feedback forms
- Webhooks
Webhooks
Email Templates
Create template
Create a new template
POST
/
v1.0
/
{company_id}
/
emailtemplates
curl --request POST \
--url https://api.hirehive.com/v1.0/{company_id}/emailtemplates \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"subject": "<string>",
"body": "<string>",
"sub_stage_id": "<string>",
"stage": "rejected",
"language": "english",
"user_id": "<string>",
"private": true
}'
{
"data": {
"id": "<string>",
"company_id": "<string>",
"name": "<string>",
"subject": "<string>",
"body": "<string>",
"type_id": "application_email",
"sub_stage_id": "<string>",
"stage": "rejected",
"language": {
"name": "<string>",
"code": "<string>"
},
"user_id": "<string>",
"private": true,
"auto_response_default": true
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/json
Response
201
application/json
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.hirehive.com/v1.0/{company_id}/emailtemplates \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"subject": "<string>",
"body": "<string>",
"sub_stage_id": "<string>",
"stage": "rejected",
"language": "english",
"user_id": "<string>",
"private": true
}'
{
"data": {
"id": "<string>",
"company_id": "<string>",
"name": "<string>",
"subject": "<string>",
"body": "<string>",
"type_id": "application_email",
"sub_stage_id": "<string>",
"stage": "rejected",
"language": {
"name": "<string>",
"code": "<string>"
},
"user_id": "<string>",
"private": true,
"auto_response_default": true
}
}
Assistant
Responses are generated using AI and may contain mistakes.