Sign in

Update call

documented

Update a call: add notes/tags, update lead status, or lead name.

PUT /v3/a/{account_id}/calls/{call_id}.jsonAccountsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.callrail.com/v3/a/{{$account_id}}/calls/{{$call_id}}.json" \
  -X PUT \
  -H "Authorization: Token token=\"{{CALLRAIL_API_KEY}}\"" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"note": "{{$note}}", "tags": ["{{$tag1}}", "{{$tag2}}"], "lead_status": "{{$lead_status}}", "value": "{{$value}}", "append_tags": {{$append_tags}}, "customer_name": "{{$customer_name}}", "spam": {{$spam}}}'"
Update call · CallRail · OpenIntegrations