Skip to main content
GET
/
orgs
/
{org_id}
/
contacts
/
{contact_id}
/
memories
Get contact memories
curl --request GET \
  --url https://api.example.com/orgs/{org_id}/contacts/{contact_id}/memories
[
  {
    "id": "<string>",
    "content": "<string>",
    "type": "FACT",
    "importance": 0.5,
    "created_at": "2023-12-25",
    "updated_at": "2023-12-25",
    "user_id": "<string>",
    "contact_id": "<string>"
  }
]

Path Parameters

org_id
string
required

Org ID

contact_id
string
required

Contact ID

Query Parameters

page
number

Page number

take
number

Number of items to take

next
string

Next page token (Only used on special endpoints)

Response

200 - application/json
id
string
required
content
string
required
Maximum string length: 200
type
enum<string>
required

The type of memory.

Available options:
FACT,
PREFERENCE,
GOAL,
EXPERIENCE
importance
number
required
Required range: 0 <= x <= 1
created_at
string<date> | null
required
updated_at
string<date> | null
required
user_id
string
contact_id
string