Skip to main content
POST
/
v1
/
interviews
/
{interview_id}
/
contacts
/
bulk
Add Contacts Bulk
curl --request POST \
  --url https://api.ontora.com/v1/interviews/{interview_id}/contacts/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contacts": [
    {
      "name": "<string>",
      "email": "<string>",
      "phone": "<string>",
      "job_title": "<string>",
      "department": "<string>",
      "seniority_level": 123,
      "is_required": false,
      "question_set_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}
'
{
  "created": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "interview_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "question_set_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "email": "<string>",
      "phone": "<string>",
      "job_title": "<string>",
      "department": "<string>",
      "seniority_level": 123,
      "is_required": true,
      "meeting_url": "<string>",
      "status": "<string>",
      "scheduled_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z",
      "booking_token": "<string>",
      "reminder_count": 0,
      "last_reminder_at": "2023-11-07T05:31:56Z"
    }
  ],
  "count": 123
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

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

Headers

X-API-Key
string | null

Path Parameters

interview_id
string<uuid>
required

Body

application/json
contacts
ContactCreate · object[]
required

Response

Successful Response

created
ContactOut · object[]
required
count
integer
required