Skip to main content
POST
/
api
/
calls
/
{callId}
/
discard
Discard a dialpad call record
curl --request POST \
  --url https://your-instance.example.com/api/calls/{callId}/discard \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contactId": "64f0a1b2c3d4e5f6a7b8c9d0",
  "deleteContact": true
}
'
{
  "success": true,
  "message": "Configuration saved"
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

callId
string
required

The provider-agnostic callId minted by Tether (also used as providerCallId for SDK calls).

Body

application/json
contactId
string
deleteContact
boolean

Only deletes the contact when it was a placeholder (firstName: "New Contact", source: "Outgoing Call") created from the dialpad.

Response

Call discarded (or not found, treated as success)

success
enum<boolean>
required
Available options:
true
message
string