Skip to main content
PATCH
/
browser
/
bookmarks
/
many
Update 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>"
    }
  }
}'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
profileIds
string[]
required

List of profile IDs to update.

Example:
["6200f55e7685342e170dc531"]
bookmarks
object
required

Bookmarks parameters that you want to update.