Skip to main content
POST
/
v1
/
notes
/
summarize-entity
AI summary of a note thread
curl --request POST \
  --url https://api.linda.cedarai.com/v1/notes/summarize-entity \
  --header 'Carrier: <carrier>' \
  --header 'Content-Type: application/json' \
  --header 'x-arms-api-key: <api-key>' \
  --header 'x-arms-assume-user: <api-key>' \
  --data '
{
  "entity_id": "<string>",
  "entity_type": "<string>"
}
'
{
  "note_count": 123,
  "summary_text": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.cedarai.com/llms.txt

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

Authorizations

x-arms-api-key
string
header
required
x-arms-assume-user
string
header
required

Headers

Carrier
string
required

Carrier ID the request is scoped to.

Body

application/json
entity_id
string

Entity ID whose note thread to summarize.

entity_type
string

Entity type whose note thread to summarize.

Response

A successful response.

note_count
integer<int32>

Number of notes that were summarized — useful for showing "summary of N notes" alongside the digest.

summary_text
string

One-paragraph plain-text digest covering key themes, latest status, and unresolved concerns. Empty string if the thread had no notes.