> ## Documentation Index
> Fetch the complete documentation index at: https://docs.talentunveiled.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List the interview call attempts

> Every call attempt for an application's interview: candidate reachability,
the next scheduled call, and each attempt's outcome. Returns 200 with an empty
``calls`` list before any call has been placed; 404 only for an unknown
application.



## OpenAPI

````yaml /swagger/v2_schema.yaml get /applications/{application_id}/interview/calls
openapi: 3.0.3
info:
  title: TalentUnveiled API v2
  version: 2.0.0
  description: >-
    Public API v2 for managing jobs, applications, interviews, and webhooks.


    **Pagination:** list endpoints return a `{count, next, previous, results}`
    envelope. Page with the `limit` and `offset` query parameters; `limit`
    defaults to 50 and is capped at 200.
servers:
  - url: https://api.talentunveiled.com/api/v2
    description: Production server
security: []
tags:
  - name: Meta
    description: Identify the organization an API key belongs to.
  - name: Jobs
    description: Create, read, update, and archive job postings.
  - name: Applications
    description: Create applications and track them through the pipeline.
  - name: Interview Configuration
    description: The interview config and call schedule for a job.
  - name: Interview Criteria
    description: Evaluation criteria for a job's interview.
  - name: Interview Questions
    description: Questions asked during a job's interview.
  - name: Interview Results
    description: The scored interview result for an application.
  - name: Interview Calls
    description: Call attempts, scheduling, and transcripts.
  - name: CV Evaluations
    description: AI scoring of a candidate's CV against the job.
  - name: Insights
    description: Combined CV and interview insights for an application.
  - name: Webhooks
    description: Manage webhook subscriptions and inspect deliveries.
  - name: Hiring Team
    description: Manage the hiring team assigned to a job posting.
  - name: Members
    description: List the members of the organization.
paths:
  /applications/{application_id}/interview/calls:
    get:
      tags:
        - Interview Calls
      summary: List the interview call attempts
      description: >-
        Every call attempt for an application's interview: candidate
        reachability,

        the next scheduled call, and each attempt's outcome. Returns 200 with an
        empty

        ``calls`` list before any call has been placed; 404 only for an unknown

        application.
      operationId: applications_interview_calls_retrieve
      parameters:
        - in: path
          name: application_id
          schema:
            type: string
            format: uuid
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InterviewCalls'
          description: ''
        '401':
          description: Authentication credentials were not provided or are invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: The requested resource does not exist.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - apiKeyAuth: []
components:
  schemas:
    InterviewCalls:
      type: object
      description: |-
        Every call attempt for an application's interview, plus candidate
        reachability and the next scheduled call. ``calls`` is empty before any
        call has been placed.
      properties:
        phone_number:
          type: string
          nullable: true
          description: >-
            The candidate's phone number (E.164) that the interview calls reach
            them on.
        next_scheduled_call_at:
          type: string
          format: date-time
          nullable: true
          description: When the next call is scheduled, or null when none is upcoming.
        calls:
          type: array
          items:
            $ref: '#/components/schemas/InterviewCall'
          description: Call attempts, oldest first.
      required:
        - calls
        - next_scheduled_call_at
        - phone_number
    ErrorResponse:
      type: array
      description: List of errors
      items:
        $ref: '#/components/schemas/ErrorItem'
    InterviewCall:
      type: object
      description: 'One interview call attempt: scheduling, timing, and outcome.'
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        status:
          allOf:
            - $ref: '#/components/schemas/CallStatusEnum'
          readOnly: true
          description: |-
            Current call status

            * `pending` - Pending
            * `scheduled` - Scheduled
            * `queued` - Queued
            * `in_progress` - In Progress
            * `completed` - Completed
            * `failed` - Failed
            * `cancelled` - Cancelled
        ended_reason:
          allOf:
            - $ref: '#/components/schemas/EndedReasonEnum'
          readOnly: true
          nullable: true
          description: |-
            Categorized reason why call ended

            * `assistant_ended` - Assistant Ended Call
            * `customer_ended` - Customer Ended Call
            * `max_duration` - Max Duration Reached
            * `silence_timeout` - Silence Timeout
            * `customer_busy` - Customer Busy
            * `customer_no_answer` - Customer Did Not Answer
            * `voicemail` - Voicemail Reached
            * `assistant_error` - Assistant Error
            * `pipeline_error` - Pipeline Error
            * `provider_error` - Provider Error
            * `manually_canceled` - Manually Canceled
            * `forwarded` - Call Forwarded
            * `unknown` - Unknown
        scheduled_at:
          type: string
          format: date-time
          readOnly: true
          nullable: true
          description: >-
            When the call is scheduled to be placed. Populated only when the
            call was created with a scheduled time or a delay. Null for calls
            placed immediately.
        started_at:
          type: string
          format: date-time
          readOnly: true
          nullable: true
          description: When the call actually started
        ended_at:
          type: string
          format: date-time
          readOnly: true
          nullable: true
          description: When the call ended
        duration_seconds:
          type: integer
          readOnly: true
          nullable: true
          description: Call duration in seconds
        attempt_number:
          type: integer
          readOnly: true
        to_number:
          type: string
          readOnly: true
          nullable: true
          description: >-
            Destination number the call dials, in E.164 format. Populated only
            when call_type is phone_outbound or phone_inbound. Null for web
            calls.
        recording_audio_url:
          type: string
          nullable: true
          readOnly: true
        recording_video_url:
          type: string
          nullable: true
          readOnly: true
        outcome_summary:
          type: string
          readOnly: true
          nullable: true
          description: >-
            AI-generated 1-2 line outcome summary of the call (post-call
            analysis).
        created_at:
          type: string
          format: date-time
          readOnly: true
      required:
        - attempt_number
        - created_at
        - duration_seconds
        - ended_at
        - ended_reason
        - id
        - outcome_summary
        - recording_audio_url
        - recording_video_url
        - scheduled_at
        - started_at
        - status
        - to_number
    ErrorItem:
      type: object
      description: Individual error item
      properties:
        code:
          allOf:
            - $ref: '#/components/schemas/ErrorCodeEnum'
          description: Machine-readable error code
        detail:
          type: string
          description: Human-readable error message
        attr:
          type: string
          nullable: true
          description: Field name this error relates to (for validation errors)
      required:
        - code
        - detail
    CallStatusEnum:
      enum:
        - pending
        - scheduled
        - queued
        - in_progress
        - completed
        - failed
        - cancelled
      type: string
      description: |-
        * `pending` - Pending
        * `scheduled` - Scheduled
        * `queued` - Queued
        * `in_progress` - In Progress
        * `completed` - Completed
        * `failed` - Failed
        * `cancelled` - Cancelled
    EndedReasonEnum:
      enum:
        - assistant_ended
        - customer_ended
        - max_duration
        - silence_timeout
        - customer_busy
        - customer_no_answer
        - voicemail
        - assistant_error
        - pipeline_error
        - provider_error
        - manually_canceled
        - forwarded
        - unknown
      type: string
      description: |-
        * `assistant_ended` - Assistant Ended Call
        * `customer_ended` - Customer Ended Call
        * `max_duration` - Max Duration Reached
        * `silence_timeout` - Silence Timeout
        * `customer_busy` - Customer Busy
        * `customer_no_answer` - Customer Did Not Answer
        * `voicemail` - Voicemail Reached
        * `assistant_error` - Assistant Error
        * `pipeline_error` - Pipeline Error
        * `provider_error` - Provider Error
        * `manually_canceled` - Manually Canceled
        * `forwarded` - Call Forwarded
        * `unknown` - Unknown
    ErrorCodeEnum:
      type: string
      enum:
        - error
        - invalid_input
        - parse_error
        - authentication_failed
        - not_authenticated
        - permission_denied
        - not_found
        - method_not_allowed
        - not_acceptable
        - unsupported_media_type
        - throttled
        - required
        - does_not_exist
        - incorrect_type
        - no_match
        - incorrect_match
        - not_a_list
        - not_a_dict
        - empty
        - candidate_user_mismatch
        - candidate_not_found
        - cross_organization_application
        - already_exists
        - call_service_error
        - call_not_joinable
        - call_config_error
        - call_access_denied
        - call_already_linked
        - date_range_too_large
        - date_range_start_after_end
        - invalid_date
        - language_not_configured
        - vapi_api_error
        - webhook_processing_error
        - proxy_error
        - configuration_error
        - interview_call_already_processed
        - call_type_switch_error
        - slot_in_past
        - interview_not_scheduled
        - interview_opt_out_not_eligible
        - interview_retry_not_allowed
        - retake_limit_reached
        - interview_session_not_joinable
        - interview_session_retake_not_eligible
        - interview_session_already_processing
        - interview_session_not_completed
        - interview_session_reset_not_allowed
        - interview_mode_locked
        - application_already_exists
        - gateway_verification_failed
        - invalid_file_type
        - file_too_large
        - cv_already_exists
        - cv_required
        - custom_fields_too_large
        - nylas_grant_already_exists
        - nylas_upstream_error
        - otp_challenge_not_found
        - job_posting_not_found
        - job_application_not_found
        - workflow_execution_error
        - llm_generation_failed
        - report_generation_failed
        - interview_config_has_no_criteria
        - scheduling_not_enabled
        - interview_session_not_reschedulable
        - interview_version_mismatch
        - v3_job_missing_config
        - idempotency_key_conflict
        - idempotency_key_invalid
        - application_status_transition_invalid
        - application_state_conflict
        - external_id_conflict
        - qualification_cannot_have_score
        - competency_requires_bars
      description: Machine-readable error code
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: >-
        API key authentication for the public API. Pass your API key as a Bearer
        token.

````