Skip to main content
PUT
/
api
/
v1
/
interviews
/
{id}
Update Interview
curl --request PUT \
  --url https://api.getversive.com/api/v1/interviews/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "completed"
}
'
{
  "message": "Interview updated successfully"
}
Update the status or metadata of an interview session.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
status
string | null

Response

Successful Response