Authentication
curl -X GET "https://app.journeybee.io/api/v1/leads/{leadId}/notes" \
-H "Authorization: Bearer your-api-key-uuid" \
-H "Content-Type: application/json"
Path Parameters
The unique identifier of the lead
Response Schema
Array of note objects
Rich text document content
User who created the note
Array of file attachments
Example Response
[
{
"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"
}
}
]
Notes
- Requires API key with
read_access permission
- Returns rich text documents with formatting and attachments
- Includes user mentions and notification history