curl --request GET \
--url https://api.example.com/v1/deals/:id/notes{
"data": {
"notes": [
{}
]
},
"meta": {}
}Retrieve a paginated list of notes for a specific deal
curl --request GET \
--url https://api.example.com/v1/deals/:id/notes{
"data": {
"notes": [
{}
]
},
"meta": {}
}Authorization: Bearer wbk_your_api_key_here
Show properties
id, title, content, note_type, tags, is_pinned, created_date, updated_datepage, per_page, totalcurl https://data.leadlex.com/functions/v1/api-gateway/v1/deals/deal-001/notes \
-H "Authorization: Bearer wbk_your_api_key_here"
| Status | Code | Description |
|---|---|---|
| 404 | not_found | Deal not found |
| 403 | insufficient_permissions | Missing deals:read permission |