curl -X GET https://app.drime.cloud/api/v1/notes \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
const response = await fetch('https://app.drime.cloud/api/v1/notes', {
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
}
});
const notes = await response.json();
console.log(`Found ${notes.length} notes`);
import requests
response = requests.get(
'https://app.drime.cloud/api/v1/notes',
headers={'Authorization': 'Bearer YOUR_ACCESS_TOKEN'}
)
notes = response.json()
print(f'Found {len(notes)} notes')
[
{
"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"
}
]
Notes
Get Notes
Get all user notes
GET
/
notes
curl -X GET https://app.drime.cloud/api/v1/notes \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
const response = await fetch('https://app.drime.cloud/api/v1/notes', {
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
}
});
const notes = await response.json();
console.log(`Found ${notes.length} notes`);
import requests
response = requests.get(
'https://app.drime.cloud/api/v1/notes',
headers={'Authorization': 'Bearer YOUR_ACCESS_TOKEN'}
)
notes = response.json()
print(f'Found {len(notes)} notes')
[
{
"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"
}
]
Overview
Retrieves all notes for the authenticated user.Response
Returns an array of note objects.integer
Note ID
string
Note title
string
Note content
string
Creation timestamp
string
Last update timestamp
curl -X GET https://app.drime.cloud/api/v1/notes \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
const response = await fetch('https://app.drime.cloud/api/v1/notes', {
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
}
});
const notes = await response.json();
console.log(`Found ${notes.length} notes`);
import requests
response = requests.get(
'https://app.drime.cloud/api/v1/notes',
headers={'Authorization': 'Bearer YOUR_ACCESS_TOKEN'}
)
notes = response.json()
print(f'Found {len(notes)} notes')
[
{
"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"
}
]
⌘I

