Skip to main content
POST
/
api
/
MessageTemplates
Create Message Template.
curl --request POST \
  --url https://api.example.com/api/MessageTemplates \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": 123,
  "recruiterID": 123,
  "type": 123,
  "typeName": "<string>",
  "statusID": 123,
  "statusName": "<string>",
  "name": "<string>",
  "subject": "<string>",
  "body": "<string>",
  "createdDate": "2023-11-07T05:31:56Z",
  "deleted": true,
  "contact": true,
  "candidate": true,
  "userFullName": "<string>",
  "cc": "<string>"
}
'
{
  "value": 123
}

Body

application/json
id
integer<int32>
recruiterID
integer<int32>
type
integer<int32>
typeName
string | null
statusID
integer<int32>
statusName
string | null
name
string | null
subject
string | null
body
string | null
createdDate
string<date-time>
deleted
boolean
contact
boolean
candidate
boolean
userFullName
string | null
cc
string | null

Response

200 - application/json

OK

value
integer<int32>