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

# Get Call Status by ID

> Get the status of a campaign call by its ID.
- **call_id**: The ID of the campaign call to retrieve.



## OpenAPI

````yaml https://api-prod.interactly.ai/api-docs/sms/api.json get /campaigns/v1/insurance-calling/calls/{call_id}/status
openapi: 3.1.0
info:
  title: Interactly API
  description: API for building interactly.ai services
  version: 1.1.0
  contact:
    name: Interactly
    url: https://interactly.ai
    email: developers@interactly.ai
servers:
  - url: https://api-prod.interactly.ai
    description: API Server
security: []
paths:
  /campaigns/v1/insurance-calling/calls/{call_id}/status:
    get:
      tags:
        - Campaign Bulk Calls
        - Bulk Calls
      summary: Get Call Status by ID
      description: |-
        Get the status of a campaign call by its ID.
        - **call_id**: The ID of the campaign call to retrieve.
      operationId: >-
        campaigns_service_get_call_by_call_id_v1_insurance_calling_calls__call_id__status_get
      parameters:
        - name: call_id
          in: path
          required: true
          schema:
            $ref: 41c3fdbf-06a7-4b35-b7c6-cb19760a1d63
            description: Campaign configuration ID
          description: Campaign configuration ID
      responses:
        '200':
          description: Call status record with resolved outcome and artifacts
          content:
            application/json:
              schema:
                properties:
                  record_id:
                    description: Call record ID
                    title: Record Id
                    type: string
                  status:
                    description: >-
                      Resolved call status after applying review logic. Possible
                      values: 'received', 'ready', 'queued', 'ringing',
                      'processing', 'ended', 'completed', 'failed', 'incomplete'
                    title: Status
                    type: string
                  failure_reason:
                    anyOf:
                      - type: string
                      - type: 'null'
                    description: Error message when the call failed
                    title: Failure Reason
                  input:
                    additionalProperties: true
                    description: Decrypted call payload — the data submitted at upload time
                    title: Input
                    type: object
                  output:
                    additionalProperties: true
                    description: >-
                      Structured data collected by the AI assistant during the
                      call
                    title: Output
                    type: object
                  phone_call_artifacts:
                    properties:
                      audio_uri:
                        anyOf:
                          - type: string
                          - type: 'null'
                        description: >-
                          Signed URL for the call audio recording (valid 48
                          hours)
                        title: Audio Uri
                      transcript_uri:
                        anyOf:
                          - type: string
                          - type: 'null'
                        description: Signed URL for the call transcript (valid 48 hours)
                        title: Transcript Uri
                    title: PhoneCallArtifacts
                    type: object
                    description: Signed URLs for the call recording and transcript
                required:
                  - record_id
                  - status
                title: BulkCallStatusRecord
                type: object
        '400':
          description: Bad request — invalid input or constraint violation
          content:
            application/json:
              schema:
                $ref: e525ba89-10eb-466b-acde-70640ae0f189
        '404':
          description: Requested resource not found
          content:
            application/json:
              schema:
                $ref: e525ba89-10eb-466b-acde-70640ae0f189
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: 61188eef-82a8-4002-94b5-80ed8ff45c7a
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: e525ba89-10eb-466b-acde-70640ae0f189
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: Bearer
      type: http
      description: >-
        Retrieve your API Key from [Dashboard API Keys
        Section](https://dashboard.interactly.ai/api-keys).

````