Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.leadwaycrm.com/llms.txt

Use this file to discover all available pages before exploring further.

Set attachments on an existing message (replaces existing). Maximum 5 URLs. Supported for TYPE_CUSTOM_CALL (34) and TYPE_CALL (1) with subType EXTERNAL_CALL.
PUT https://services.leadconnectorhq.com/conversations/messages/{messageId}/attachments

Autorizacion

Authorization
string
required
Bearer token generado desde el portal Leadway. Ver Autenticacion.
Version
string
default:"2021-07-28"
required
Version de la API.

Path parameters

messageId
string
default:"ve9EPM428h8vShlRW1KT"
required
Message Id

Body

attachments
string[]
required
Array of attachment URLs to set on the message (replaces existing). Maximum 5 URLs.

Respuestas

{}
{}

Ejemplo

curl -X PUT 'https://services.leadconnectorhq.com/conversations/messages/YOUR_messageId/attachments' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  -H 'Version: 2021-07-28' \
  -H 'Content-Type: application/json' \
  -d '{
  "attachments": [
    "https://provider.com/recordings/call-123.mp3"
  ]
}'