Skip to content
HRTEQDocs
Documentation API

DocsRecruitment

Interviews

Interview plans, the numbered participant queue, running a session live with the elapsed timer, and how a Passed result feeds the pipeline gate.

An interview in HRTEQ is a session, not a calendar entry. You build a plan with a numbered queue of applicants, then run it: one applicant at a time, with an elapsed timer, a result, and automatic progression to the next person in the queue. The results feed straight back into the pipeline gate.

Creating a plan#

A plan needs a title, a type, a mode, a scheduled time, a duration, and the applications taking part. Everything else is optional.

FieldNotes
typeAGENCY for your own screening, PRINCIPAL for the employer’s interview.
modeONSITE, VIDEO or PHONE.
scheduledAtWhen the session starts.
durationMinPer participant, not for the whole session.
locationFor onsite sessions.
meetingUrlNormalised on save for video sessions.
interviewerNameRecorded on the plan and copied onto each participant’s panel.
applicationIdsThe queue. Duplicates are collapsed.

Only applications with status IN_PROGRESS can be added. If any one of the submitted IDs is unavailable, the whole request is refused with 409 rather than silently creating a partial plan.

Queue numbers are assigned from the order you submit, starting at 1. That number is what the applicants waiting outside are called by.

Creating a plan completes a checklist item. Adding an application to a plan marks EMPLOYER_INTERVIEW_SCHEDULED done. That is the entry requirement for the Employer Interview stage, so scheduling is what unlocks the move rather than a separate tick.

Running the session#

Starting a plan moves it to IN_PROGRESS and stamps startedAt on the first uncompleted participant. From then on exactly one participant is current — the one that has started and not finished.

  1. Start

    The plan status becomes IN_PROGRESS. If the plan has no participants the request is refused. Starting an already-completed or cancelled plan returns 409.

  2. Interview the current participant

    The screen shows who they are, the position and principal they are up for, their current stage and their location. A one-second timer ticks the elapsed time against the allotted duration.

  3. Add time if needed

    Time can be added to the current participant in increments of 5, 10 or 15 minutes, capped at 480 minutes total. Only the current participant can receive more time, and every addition is audited.

  4. Record the result and finish

    Finishing takes a result of PASSED, REJECTED, RESERVED or NO_SHOW, plus optional employer remarks. The participant is stamped complete, and the next in the queue starts automatically in the same transaction.

  5. The plan closes itself

    When the last participant finishes there is no next one, so the plan moves to COMPLETED with a completedAt timestamp. Once completed, the screen renders a printable result sheet.

The queue advances in one transaction. Completing the current participant and starting the next happen together. There is no window where nobody is current and no way for two participants to be current at once.

Results#

ResultMeaning
PENDINGNot yet interviewed. The default.
PASSEDThe interviewer accepted them. This is the result that moves the pipeline.
FAILEDDid not meet the standard.
REJECTEDDeclined by the interviewer.
RESERVEDHeld as a backup — acceptable, but not selected now.
NO_SHOWDid not attend.
RESCHEDULEDMoved to another session.

A result can also be set outside the live runner, which is how a correction is made after the fact.

How a result feeds the gate#

Recording PASSED on a completed participant marks the EMPLOYER_INTERVIEW_PASSED checklist item done on that application. That item is the entry requirement for the SELECTED stage, so the application becomes eligible to move the moment the interviewer finishes — and, if it was the last outstanding requirement, it moves by itself.

Changing a result away from PASSED reopens the checklist item, which correspondingly takes the eligibility away. See Stage gates.

Plan status#

StatusWhen
DRAFTBeing prepared.
SCHEDULEDCreated and waiting for its start time.
IN_PROGRESSStarted; one participant is current.
COMPLETEDEvery participant finished. The result sheet is available.
CANCELLEDCalled off. Cannot be started.

What gets recorded#

Interviews are one of the more heavily audited areas, because a principal’s selection decision is exactly the sort of thing that gets questioned later.

  • interview.plan_created — with the title and participant count.
  • interview.plan_updated — plan-level edits.
  • interview.started — with the participant that became current.
  • interview.time_added — the increment and the resulting duration.
  • interview.participant_updated — a result set outside the live runner.
  • interview.completed — the result and which participant became current next.

The list endpoint returns the 100 most recent plans, newest scheduled first. Evaluations recorded against an interview live on a separate Evaluation record for structured scoring.

Was this page helpful?