Skip to main content
POST
/
v3
/
contacts
/
{id}
/
send-direct-linkedin-ai-voice
Send an AI-generated LinkedIn voice message to a contact
curl --request POST \
  --url https://api.reply.io/v3/contacts/{id}/send-direct-linkedin-ai-voice \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "linkedInAccountId": 123,
  "script": "<string>"
}
'
{
  "actionType": "aiVoice",
  "linkedInActivityId": 1046,
  "sentAtUtc": "2026-05-15T10:34:00Z"
}

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Path Parameters

id
integer
required

Contact ID

Required range: x >= 1

Body

application/json
linkedInAccountId
integer
required

ID of the LinkedIn account to send from. Must be greater than 0.

script
string
required

Text script to synthesize into an AI voice message.

Maximum string length: 1000

Response

AI voice message sent successfully.

Response returned after a direct LinkedIn action is dispatched.

actionType
enum<string>
required

The type of LinkedIn action performed.

Available options:
connect,
inMail,
message,
voice,
aiVoice
linkedInActivityId
integer
required

ID of the LinkedIn activity record created for this action.

sentAtUtc
string<date-time>
required

UTC timestamp when the action was dispatched.