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

Body

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

Response

200

OK