Skip to main content
POST
/
customers
/
api
/
id-links
/
{linkId}
/
resend
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"] }'
{
  "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"
  }
}
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

ID link identifier.

Request Body

channels
string[]
required
Delivery channels to use. At least one channel is required. Values: email, sms.

Response Fields

success
boolean
Request status
data
object
Delivery result, including which channels were used and their status.
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"] }'
{
  "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"
  }
}