Skip to main content
POST
/
notes
/
create
Log a note, call, meeting, or any activity to the timeline of one or more records. Use this to record call summaries, meeting notes, follow-up reminders, etc.
curl --request POST \
  --url https://api.supersonic.cv/notes/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "record_ids": [
    "<string>"
  ],
  "body": "<string>",
  "type": "note",
  "occurred_at": "<string>",
  "metadata": {}
}
'
{}

Authorizations

Authorization
string
header
required

API key: supersonic_live_...

Body

application/json
title
string
required

Note title (e.g. 'Call with John — discussed pricing')

record_ids
string[]
required

Record UUIDs to attach this note to (contacts, companies, deals)

body
string

Full note text / call summary / meeting notes

type
enum<string>

Activity type (default: note)

Available options:
note,
call,
meeting,
email,
custom
occurred_at
string

ISO datetime when this happened (default: now)

metadata
object

Extra data (duration, outcome, etc.)

Response

Success

The response is of type object.