curl -X POST https://app.drime.cloud/api/v1/file-entries/star \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"entryIds": [123456, 789012]
}'
const response = await fetch('https://app.drime.cloud/api/v1/file-entries/star', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
entryIds: [123456, 789012]
})
});
const { status } = await response.json();
console.log('Entries starred');
import requests
response = requests.post(
'https://app.drime.cloud/api/v1/file-entries/star',
headers={'Authorization': 'Bearer YOUR_ACCESS_TOKEN'},
json={'entryIds': [123456, 789012]}
)
print('Entries starred')
{
"status": "success",
"tag": {
"id": 1,
"name": "starred"
}
}
Starring
Star Entries
Mark entries as starred/favorites
POST
/
file-entries
/
star
curl -X POST https://app.drime.cloud/api/v1/file-entries/star \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"entryIds": [123456, 789012]
}'
const response = await fetch('https://app.drime.cloud/api/v1/file-entries/star', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
entryIds: [123456, 789012]
})
});
const { status } = await response.json();
console.log('Entries starred');
import requests
response = requests.post(
'https://app.drime.cloud/api/v1/file-entries/star',
headers={'Authorization': 'Bearer YOUR_ACCESS_TOKEN'},
json={'entryIds': [123456, 789012]}
)
print('Entries starred')
{
"status": "success",
"tag": {
"id": 1,
"name": "starred"
}
}
Overview
Marks one or more file entries as starred (favorites) for quick access.Request Body
array
required
Array of entry IDs to star
Response
object
The “starred” tag object
string
Request status (
success)curl -X POST https://app.drime.cloud/api/v1/file-entries/star \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"entryIds": [123456, 789012]
}'
const response = await fetch('https://app.drime.cloud/api/v1/file-entries/star', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
entryIds: [123456, 789012]
})
});
const { status } = await response.json();
console.log('Entries starred');
import requests
response = requests.post(
'https://app.drime.cloud/api/v1/file-entries/star',
headers={'Authorization': 'Bearer YOUR_ACCESS_TOKEN'},
json={'entryIds': [123456, 789012]}
)
print('Entries starred')
{
"status": "success",
"tag": {
"id": 1,
"name": "starred"
}
}
Use
starredOnly=true in the Get File Entries endpoint to retrieve all starred items.⌘I

