POST
/
api
/
v1
/
lead-deals
/
{dealId}
/
notes
Create Deal Note
curl --request POST \
  --url https://app.journeybee.io/api/v1/lead-deals/{dealId}/notes \
  --header 'Authorization: Bearer <token>'

Authentication

curl -X POST "https://app.journeybee.io/api/v1/lead-deals/{dealId}/notes" \
  -H "Authorization: Bearer your-api-key-uuid" \
  -H "Content-Type: application/json" \
  -d '{"document": {"type": "doc", "content": [{"type": "paragraph", "content": [{"type": "text", "text": "Deal moved to negotiation stage"}]}]}}'

Path Parameters

dealId
number
required
The unique identifier of the deal

Request Body Schema

Same as lead notes - rich text document with attachments and mentions support.

Notes

  • Requires API key with write_access permission
  • Deal notes trigger webhook events for commission tracking
  • Partner companies may receive notifications for important deal updates