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>"
}
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>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
1 <= x <= 100
Successful response
The response is of type object
.