Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.seamless.ai/llms.txt

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

Log call outcomes and list disposition options. Not a click-to-call feature. Requires Connect access.
ToolDescriptionRiskSchema
log_callLog call outcome for a contact.write#log_call
list_call_dispositionsList disposition options (e.g. “Left Voicemail”).read#list_call_dispositions
list_call_sentimentsList sentiment options (e.g. “Positive”).read#list_call_sentiments

log_call

Call list_call_dispositions first to get valid callDispositionId values. Disposition labels are not accepted as strings.
contactId
integer | string
required
Saved contact ID.
callDispositionId
integer | string
Disposition ID from list_call_dispositions.

Example

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "log_call",
    "arguments": {
      "contactId": 456,
      "callDispositionId": 12
    }
  },
  "id": 1
}