Skip to main content
POST
/
api
/
v1
/
participants
/
bulk
Bulk import participants
curl --request POST \
  --url https://www.intervyo.ai/api/v1/participants/bulk \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "participants": [
    {
      "name": "<string>",
      "email": "<string>",
      "phone": "<string>",
      "external_id": "<string>",
      "evaluation_template_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "tags": [
        "<string>"
      ],
      "resume_url": "<string>"
    }
  ],
  "accountSlug": "<string>"
}
'
{
  "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
participants
object[]
required

Array of participant objects, max 500. Duplicates (by email) are silently skipped.

Maximum array length: 500
accountSlug
string

Team slug — required for session (cookie) auth

Response

Success

Last modified on June 3, 2026