v1

latestOpenAPI 3.1.02026-08-0456127224.3 KB
Questions

Reorder questions

Sets the display order for questions of a given modality. You must include every active question ID for the specified modality in the desired order.

post/api/v2/postings/{posting_id}/questions/reorder

Path parameters

posting_idstring required

Headers

X-API-KEYstring nullable
Authorizationstring nullable
X-Workspace-Idstring nullable

Request body

modality'voice' | 'sms' | 'form' | 'resume_eligibility' | 'resume_scoring' | 'voice_tags' required

Modality to reorder: voice, sms, form, resume_eligibility, resume_scoring, voice_tags.

orderstring[] required

Ordered list of question IDs. Every active question for the specified modality must be included.

Example request

{
  "modality": "voice",
  "order": [
    "Q1",
    "Q3",
    "Q2"
  ]
}

Response

Successful Response

Example response

{
  "data": [
    {
      "id": "A1B2C3D4",
      "posting_id": "13D77095",
      "modality": "voice",
      "text": "Tell me about a challenging project you led.",
      "rank": 1
    }
  ]
}