Eagle API Document
Search…
Eagle API Document
Overview
Application
/api/application/info
Folder
/api/folder/create
/api/folder/rename
/api/folder/update
/api/folder/list
/api/folder/listRecent
Item
/api/item/addFromURL
/api/item/addFromURLs
/api/item/addFromPath
/api/item/addFromPaths
/api/item/addBookmark
/api/item/info
/api/item/thumbnail
/api/item/list
/api/item/moveToTrash
/api/item/refreshPalette
/api/item/refreshThumbnail
/api/item/update
Library
/api/library/info
/api/library/history
/api/library/switch
Examples
Using Eagle API with Tampermonkey
Changelog
Powered By
GitBook
/api/item/refreshPalette
POST
Re-analysis the color of the file. When changes to the original file were made, you can call this function to refresh the Color Analysis.
Parameter
Description
id
The item's ID
Sample Code:
1
var
data
=
{
2
"id"
:
"KBKE02W8V0YWD"
3
};
4
5
var
requestOptions
=
{
6
method
:
'POST'
,
7
body
:
JSON
.
stringify
(
data
),
8
redirect
:
'follow'
9
};
10
11
fetch
(
"http://localhost:41595/api/item/refreshPalette"
,
requestOptions
)
12
.
then
(
response
=>
response
.
json
())
13
.
then
(
result
=>
console
.
log
(
result
))
14
.
catch
(
error
=>
console
.
log
(
'error'
,
error
));
Copied!
Results Returned:
1
{
2
"status"
:
"success"
3
}
Copied!
Item - Previous
/api/item/moveToTrash
Next - Item
/api/item/refreshThumbnail
Last modified
1yr ago
Copy link