curl --request PATCH \
--url https://api.gologin.com/browser/bookmarks/many \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"profileIds": [
"6200f55e7685342e170dc531"
],
"bookmarks": {
"bookmark_bar": {
"children": [
{
"name": "<string>",
"type": "url",
"url": "https://www.google.com"
}
],
"name": "<string>",
"type": "<string>"
},
"other": {
"children": [
{
"name": "<string>",
"type": "url",
"url": "https://www.google.com"
}
],
"name": "<string>",
"type": "<string>"
},
"synced": {
"children": [
{
"name": "<string>",
"type": "url",
"url": "https://www.google.com"
}
],
"name": "<string>",
"type": "<string>"
}
}
}
'Updates the bookmarks for multiple profiles.
curl --request PATCH \
--url https://api.gologin.com/browser/bookmarks/many \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"profileIds": [
"6200f55e7685342e170dc531"
],
"bookmarks": {
"bookmark_bar": {
"children": [
{
"name": "<string>",
"type": "url",
"url": "https://www.google.com"
}
],
"name": "<string>",
"type": "<string>"
},
"other": {
"children": [
{
"name": "<string>",
"type": "url",
"url": "https://www.google.com"
}
],
"name": "<string>",
"type": "<string>"
},
"synced": {
"children": [
{
"name": "<string>",
"type": "url",
"url": "https://www.google.com"
}
],
"name": "<string>",
"type": "<string>"
}
}
}
'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List of profile IDs to update.
["6200f55e7685342e170dc531"]Bookmarks parameters that you want to update.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?