cURL
curl --request GET \ --url https://app.journeybee.io/api/v1/leads/{leadId}/notes \ --header 'Authorization: Bearer <token>'
[ { "id": 123, "content": { "type": "doc", "content": [ { "type": "paragraph", "content": [{"type": "text", "text": "Initial contact made with lead"}] } ] }, "created_at": "2024-01-15T10:30:00Z", "created_by": { "id": 456, "first_name": "John", "last_name": "Doe" } } ]
Retrieve all notes associated with a specific lead
curl -X GET "https://app.journeybee.io/api/v1/leads/{leadId}/notes" \ -H "Authorization: Bearer your-api-key-uuid" \ -H "Content-Type: application/json"
Show Note Object
read_access