cURL
curl --request POST \ --url https://app.journeybee.io/api/v1/lead-deals/{dealId}/notes \ --header 'Authorization: Bearer <token>'
Create a new note for a deal with rich text content, attachments, and user mentions
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"}]}]}}'
write_access