Skip to main content
POST
/
api
/
v1
/
evaluation-stages
Create evaluation stage
curl --request POST \
  --url https://www.intervyo.ai/api/v1/evaluation-stages \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "evaluation_template_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "type": "<string>",
  "stage_name": "<string>",
  "stage_order": 123,
  "duration_minutes": 123,
  "agent_profile_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "pass_threshold": 123,
  "allow_retake": true
}
'
{
  "error": "<string>",
  "issues": [
    {}
  ]
}

Authorizations

x-api-key
string
header
required

API key with the iv_live_ prefix. Create one under Developer → API Keys.

Body

application/json
evaluation_template_id
string<uuid>
required

Parent template

type
string
required

Stage type label, e.g. "technical"

stage_name
string

Display name shown to candidates

stage_type
enum<string>

Interview format — determines session_mode

Available options:
ai_interview,
roleplay_simulation,
practice_session,
manual_review,
async_assessment,
final_review
stage_order
integer

Position in pipeline (default: 0)

duration_minutes
integer

Session length in minutes (default: 30)

agent_profile_id
string<uuid>

AI persona to use for this stage

difficulty
enum<string>

Default: intermediate

Available options:
beginner,
intermediate,
advanced,
expert,
adaptive
pass_threshold
number

Minimum score to pass

allow_retake
boolean

Allow retries on failure (default: false)

automation_rule
enum<string>

What happens automatically on completion (default: none)

Available options:
none,
auto_advance,
require_reviewer_approval
status
enum<string>

Default: active

Available options:
draft,
active,
archived

Response

Success

Last modified on June 3, 2026