Aura Logo
AuraAPI Docs
OpenapiV1LeadsIdNotes

List lead notes

Retrieve all internal notes attached to a lead, ordered oldest-first.

Notes are the same array shown in the Aura dashboard and returned inline on GET /v1/leads/:id — this endpoint exposes them standalone so partners can sync notes without pulling the full lead payload.

GET
/v1/leads/{id}/notes

Path Parameters

idstring

Lead ID (UUID)

Formatuuid

Response Body

application/json

application/json

application/json

curl -X GET "https://api.aura-app.ai/v1/leads/550e8400-e29b-41d4-a716-446655440000/notes"
{
  "data": {
    "notes": []
  },
  "success": true
}
{
  "code": "NOT_FOUND",
  "error": "Lead not found",
  "requestId": "req_abc123",
  "success": false
}
{
  "code": "NOT_FOUND",
  "error": "Lead not found",
  "requestId": "req_abc123",
  "success": false
}