Skip to main content
PUT
/
api
/
Configuration
/
InterviewTypes
/
{interviewTypeId}
Update Interview Type.
curl --request PUT \
  --url https://api.example.com/api/Configuration/InterviewTypes/{interviewTypeId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": 123,
  "name": "<string>",
  "isEnabled": true,
  "isSlot": true,
  "isInternal": true,
  "workflowStatusID": 123
}
'

Path Parameters

interviewTypeId
integer<int32>
required

Body

application/json
id
integer<int32>
name
string | null
isEnabled
boolean
isSlot
boolean
isInternal
boolean
workflowStatusID
integer<int32>

Response

200

OK