Debriefer

Generate a participant token for a voice interview

Generates a LiveKit participant token to join a voice interview room. Requires a valid join_token that was returned when the interview run was created.

POST
/api/v1/interview-runs/{id}/token

Path Parameters

id*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://loading/api/v1/interview-runs/run_1234567890abcdef/token" \  -H "Content-Type: application/json" \  -d '{    "join_token": "string"  }'
{
  "object": "participant_token",
  "server_url": "string",
  "token": "string",
  "room_name": "string",
  "identity": "string"
}
Empty
Empty
Empty