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

# Resend ID Link

> Re-send a KYC verification link through specified channels

Re-delivers an existing verification link to the customer through one or more channels. The link itself is not regenerated - only the delivery is repeated. Use this when the original notification was missed or when you want to add an additional delivery channel.

## Path Parameters

<ParamField path="linkId" type="string" required>
  ID link identifier.
</ParamField>

## Request Body

<ParamField body="channels" type="string[]" required>
  Delivery channels to use. At least one channel is required. Values: `email`, `sms`.
</ParamField>

## Response Fields

<ResponseField name="success" type="boolean">Request status</ResponseField>
<ResponseField name="data" type="object">Delivery result, including which channels were used and their status.</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST "https://api.trusset.org/customers/api/id-links/link_abc123/resend" \
    -H "Content-Type: application/json" \
    -H "X-API-Key: trusset_abc123xy_secret..." \
    -d '{ "channels": ["email", "sms"] }'
  ```

  ```typescript TypeScript theme={null}
  const response = await fetch(
    'https://api.trusset.org/customers/api/id-links/link_abc123/resend',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
        'X-API-Key': 'trusset_abc123xy_secret...'
      },
      body: JSON.stringify({ channels: ['email', 'sms'] })
    }
  );
  const { data } = await response.json();
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "linkId": "link_abc123",
      "channels": ["email", "sms"],
      "deliveredAt": "2025-06-15T12:00:00.000Z"
    },
    "metadata": {
      "requestId": "550e8400-e29b-41d4-a716-446655440000",
      "timestamp": "2025-06-15T12:00:00.000Z"
    }
  }
  ```

  ```json Error - Missing Channels theme={null}
  {
    "success": false,
    "error": {
      "code": "INVALID_INPUT",
      "message": "channels array is required"
    },
    "metadata": {
      "requestId": "550e8400-e29b-41d4-a716-446655440000",
      "timestamp": "2025-06-15T12:00:00.000Z"
    }
  }
  ```
</ResponseExample>
