Skip to main content
POST
/
memory
/
{id}
/
add-call
Add an existing call to a memory
curl --request POST \
  --url https://api.cleartalk.ai/memory/{id}/add-call \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "call_id": "call_abc123",
  "external_memory_key": "external_key_123"
}
'

Authorizations

x-api-key
string
header
required

API Key for authentication

Path Parameters

id
string
required

Body

application/json
call_id
string
required

The unique identifier of the call to add to the memory. Must be an existing call in your account.

Example:

"call_abc123"

external_memory_key
string

Optional external key for additional memory validation or cross-referencing.

Example:

"external_key_123"

Response

Call added to memory successfully