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

# Get Retry History

> View every retry attempt for a call placed under a campaign with auto-retry enabled, including outcome per attempt.

<Warning>
  **Legacy endpoint - deprecated.** Unversioned endpoints are scheduled for removal on **July 31, 2026**. A public v1 replacement is not currently listed in the v1 reference. This endpoint remains available for existing integrations until then.
</Warning>

Returns the complete retry history for a single call. When a campaign is configured with retry logic, calls that fail or are not answered are automatically redialled after a configured interval. This endpoint returns every dial attempt linked to the parent call, the attempt number, the outcome (`completed`, `no-answer`, `busy`, `failed`), the duration, and the timestamp of each attempt, so you can reconstruct exactly what happened before the lead was reached (or finally written off).

## When to use this

* **Why didn't we reach this lead?**: inspect the retry history to see whether the lead was repeatedly busy, never answered, or only failed on the first attempt.
* **Tuning retry policy**: if many leads reach the maximum retry count without ever being answered, consider extending the interval or shifting it to a different time of day. See [Auto-retry](/docs/batch-calls/retries-and-statuses).
* **Compliance review**: produce a per-call dial log to demonstrate the number of contact attempts made.
* **Cost attribution**: confirm how many billable minutes a difficult-to-reach lead consumed across attempts.

## Path parameters

| Parameter | Description                                          |
| --------- | ---------------------------------------------------- |
| `id`      | The parent call ID, for example `call_x9y3zp4mq7r1`. |

## Errors

* `404 Not Found` is returned when the call does not exist.
* `403 Forbidden` is returned when the API key cannot read call data on this workspace.

## Related endpoints

* [Get Call Log](/docs/api-reference/call-logs/get): final outcome of the parent call.
* [Get Call Details](/docs/api-reference/call-logs/get-details): full transcript of the connected attempt.
* [Auto-retry](/docs/batch-calls/retries-and-statuses): how retry intervals and max attempts are configured.
* [Concurrency and limits](/docs/reference/limits): how retries interact with concurrency caps.


## OpenAPI

````yaml GET /call-logs/{id}/retries
openapi: 3.0.0
info:
  title: DialNexa API
  description: >-
    Public REST API for the DialNexa voice AI platform. Versioned endpoints are
    under /v1; unversioned endpoints are legacy and deprecated.
  version: 1.0.0
servers:
  - url: https://api.dialnexa.com
    description: DialNexa production API
security:
  - bearer: []
tags:
  - name: API Keys
  - name: Agent Functions
  - name: Agents V1
  - name: Agents2
  - name: Batch Calls
  - name: Batch Calls V1
  - name: Call Logs
  - name: Calls
  - name: Calls V1
  - name: Campaign Leads
  - name: Campaigns
  - name: External Webhooks
  - name: Knowledge Base
  - name: Knowledge Base V1
  - name: LLMs
  - name: LLMs V1
  - name: Languages
  - name: Languages V1
  - name: Organization Phone Numbers
  - name: Organization Phone Numbers V1
  - name: Phone Number Pricing
  - name: Phone Number Pricing V1
  - name: Transcribers
  - name: Transcribers V1
  - name: User Webhooks
  - name: User Webhooks V1
  - name: V1
  - name: Voices
  - name: Voices V1
  - name: Webcall
  - name: Workflow Leads
  - name: Workflow Leads V1
  - name: Workflows
  - name: Workflows V1
paths:
  /call-logs/{id}/retries:
    get:
      tags:
        - Call Logs
      summary: Get retry call logs for a parent call ID
      description: >-
        **Legacy endpoint - deprecated, scheduled for removal on July 31,
        2026.** Use the `/v1` version for new integrations. 
      operationId: CallLogsController_findChildCallLogs
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
        - name: x-organization-id
          in: header
          description: Encrypted ID of the organization
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Return retry call logs for the specified parent call
        '403':
          description: Access denied
        '404':
          description: Parent call log not found
      deprecated: true
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````