Skip to main content
PUT
/
api
/
InterviewNoteTemplates
/
{templateId}
Update Interview Note Template.
curl --request PUT \
  --url https://api.example.com/api/InterviewNoteTemplates/{templateId} \
  --header 'Content-Type: application/json-patch+json' \
  --data '
{
  "id": 123,
  "ownerID": 123,
  "owner": "<string>",
  "name": "<string>",
  "statusID": 123,
  "status": "<string>",
  "text": "<string>"
}
'

Path Parameters

templateId
integer<int32>
required

Body

id
integer<int32>
ownerID
integer<int32>
owner
string | null
name
string | null
statusID
integer<int32>
status
string | null
text
string | null

Response

200

OK