Skip to main content
POST
/
notes
/
list
List notes/activities: calls, meeting notes, custom notes. Filter by record, type, author, search. Excludes system-generated activities.
curl --request POST \
  --url https://api.supersonic.cv/notes/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "record_id": "<string>",
  "type": "note",
  "author_id": "<string>",
  "mine": true,
  "search": "<string>",
  "since": "<string>",
  "until": "<string>",
  "page": 123,
  "per_page": 123
}
'
{}

Authorizations

Authorization
string
header
required

API key: supersonic_live_...

Body

application/json
record_id
string

Filter by linked record UUID

type
enum<string>
Available options:
note,
call,
meeting,
email,
custom
author_id
string

Filter by author member UUID

mine
boolean

Show only my notes

Search in title and description

since
string

ISO datetime — notes after this time

until
string

ISO datetime — notes before this time

page
integer
per_page
integer

Response

Success

The response is of type object.