Skip to main content
PUT
/
notes
/
{id}
Update a note
curl --request PUT \
  --url https://api.gospott.com/notes/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "content": "<string>",
  "title": "<string>",
  "pinned": true,
  "source": "phone",
  "labelIds": [
    "<string>"
  ]
}
'

Authorizations

x-api-key
string
header
required

API key for authentication. Get your API key from Settings → API Keys in your Spott dashboard.

Path Parameters

id
string
required

Body

application/json
content
string
required

The content of the note in HTML format.

title
string | null
required
pinned
boolean
required
source
enum<string> | null
Available options:
phone,
inPerson,
onlineMeeting,
callAttempted
labelIds
string[]

Response

Note updated successfully.