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"
}

Documentation Index

Fetch the complete documentation index at: https://docs.getversive.com/llms.txt

Use this file to discover all available pages before exploring further.

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