GET
/
v1
/
notes
curl --request GET \
  --url https://app.enzo.health/api/v1/notes \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "title": "<string>",
      "createdAt": "<string>",
      "user": {
        "name": "<string>"
      },
      "patient": {
        "name": "<string>",
        "firstname": "<string>",
        "lastname": "<string>"
      },
      "duration": 123,
      "isFavorite": true,
      "isDeleted": true,
      "date": "<string>",
      "templateType": [
        "transcript"
      ]
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
number
default:20
Required range: 1 <= x <= 100
cursor
string | null
patientId
string

Response

200
application/json

Successful response

The response is of type object.