Skip to main content
POST
/
api
/
{portfolio}
/
portfolios
/
v1
/
notes
/
lead
/
{leadUuid}
Create note for lead
curl --request POST \
  --url https://public-api.prd.monument.io/api/{portfolio}/portfolios/v1/notes/lead/{leadUuid} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "noteText": "Lead interested in 2-bedroom unit"
}
'
{
  "noteUuid": "123e4567-e89b-12d3-a456-426614174000"
}

Headers

x-api-key
any
required

Api key required to authenticate your request. Please reach out to monument for a key.

Example:

"monument-2230012-2312321"

Path Parameters

leadUuid
string
required

Body

application/json
noteText
string
required

Note text content

Maximum string length: 1500
Example:

"Lead interested in 2-bedroom unit"

Response

Note created successfully

noteUuid
string
required

UUID of the created note

Example:

"123e4567-e89b-12d3-a456-426614174000"