cURL
curl --request PATCH \ --url https://app.journeybee.io/api/v1/lead-deals/{dealId}/notes/{noteId} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "document": {}, "attachments": [ {} ], "mentions": [ {} ] }'
{ "id": 123, "updated_at": "<string>" }
Update a deal note’s content, attachments, or mentions
curl -X PATCH "https://app.journeybee.io/api/v1/lead-deals/{dealId}/notes/{noteId}" \ -H "Authorization: Bearer your-api-key-uuid" \ -H "Content-Type: application/json" \ -d '{"document": {"type": "doc", "content": [{"type": "paragraph", "content": [{"type": "text", "text": "Updated negotiation notes"}]}]}}'
write_access