curl -X GET https://app.drime.cloud/api/v1/notes \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
[
{
"id": 1,
"title": "Meeting Notes",
"body": "Discussed project timeline and deliverables...",
"created_at": "2024-01-15T10:30:00.000000Z",
"updated_at": "2024-01-15T14:20:00.000000Z"
},
{
"id": 2,
"title": "Ideas",
"body": "Feature ideas for the next release...",
"created_at": "2024-01-16T09:00:00.000000Z",
"updated_at": "2024-01-16T09:00:00.000000Z"
}
]
Get all user notes
curl -X GET https://app.drime.cloud/api/v1/notes \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
[
{
"id": 1,
"title": "Meeting Notes",
"body": "Discussed project timeline and deliverables...",
"created_at": "2024-01-15T10:30:00.000000Z",
"updated_at": "2024-01-15T14:20:00.000000Z"
},
{
"id": 2,
"title": "Ideas",
"body": "Feature ideas for the next release...",
"created_at": "2024-01-16T09:00:00.000000Z",
"updated_at": "2024-01-16T09:00:00.000000Z"
}
]
curl -X GET https://app.drime.cloud/api/v1/notes \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
[
{
"id": 1,
"title": "Meeting Notes",
"body": "Discussed project timeline and deliverables...",
"created_at": "2024-01-15T10:30:00.000000Z",
"updated_at": "2024-01-15T14:20:00.000000Z"
},
{
"id": 2,
"title": "Ideas",
"body": "Feature ideas for the next release...",
"created_at": "2024-01-16T09:00:00.000000Z",
"updated_at": "2024-01-16T09:00:00.000000Z"
}
]