PATCH
/
browser
/
bookmarks
/
many
curl --request PATCH \
  --url https://api.gologin.com/browser/bookmarks/many \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "profileIds": [
    "6200f55e7685342e170dc531"
  ],
  "bookmarks": {
    "BookmarkName": {
      "name": "Bookmark Name",
      "type": "folder",
      "children": [
        {
          "name": "Bookmark Name",
          "type": "url",
          "url": "https://www.google.com"
        }
      ]
    }
  }
}'

Authorizations

Authorization
string
header
required

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

Body

application/json