Browser Bookmarks
FreshSet Browser Bookmarks
URL: http://localhost:40185/api/v1/browser/bookmarks/setMethod: POST
| Parameter | Required | Type | Description |
|---|---|---|---|
| id | Yes | string | Browser ID |
| bookmarks | Yes | array[BrowserBookmark] | Bookmark list |
BrowserBookmark
| Parameter | Required | Type | Description |
|---|---|---|---|
| name | Yes | string | Bookmark name |
| url | Yes | string | Bookmark URL |
json
{
"id": "497548067550006541",
"bookmarks": [
{ "name": "Google", "url": "https://www.google.com" },
{ "name": "TikTok", "url": "https://www.tiktok.com" }
]
}Get Browser Bookmarks
URL: http://localhost:40185/api/v1/browser/bookmarks/getMethod: POST
| Parameter | Required | Type | Description |
|---|---|---|---|
| id | Yes | string | Browser ID |
Response
json
{
"code": 0,
"data": {
"bookmarks": [
{ "name": "Google", "url": "https://www.google.com" }
]
}
}