patch_profile_bookmarks_many
Modify bookmarks for multiple profiles in GoLogin by updating names, URLs, and types across bookmark_bar, other, and synced categories.
Instructions
Update bookmarks for multiple profiles
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bookmarks | Yes | Bookmarks parameters that you want to update. | |
profileIds | Yes | List of profile IDs to update. |
Input Schema (JSON Schema)
{
"properties": {
"bookmarks": {
"description": "Bookmarks parameters that you want to update.",
"properties": {
"bookmark_bar": {
"properties": {
"children": {
"items": {
"properties": {
"name": {
"description": "Bookmark name.",
"type": "string"
},
"type": {
"description": "Type of bookmark item, usually \"url\".",
"type": "string"
},
"url": {
"description": "Bookmark URL.",
"type": "string"
}
},
"required": [
"name",
"type",
"url"
],
"type": "object"
},
"type": "array"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"children",
"name",
"type"
],
"type": "object"
},
"other": {
"properties": {
"children": {
"items": {
"properties": {
"name": {
"description": "Bookmark name.",
"type": "string"
},
"type": {
"description": "Type of bookmark item, usually \"url\".",
"type": "string"
},
"url": {
"description": "Bookmark URL.",
"type": "string"
}
},
"required": [
"name",
"type",
"url"
],
"type": "object"
},
"type": "array"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"children",
"name",
"type"
],
"type": "object"
},
"synced": {
"properties": {
"children": {
"items": {
"properties": {
"name": {
"description": "Bookmark name.",
"type": "string"
},
"type": {
"description": "Type of bookmark item, usually \"url\".",
"type": "string"
},
"url": {
"description": "Bookmark URL.",
"type": "string"
}
},
"required": [
"name",
"type",
"url"
],
"type": "object"
},
"type": "array"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"children",
"name",
"type"
],
"type": "object"
}
},
"required": [
"bookmark_bar",
"other",
"synced"
],
"type": "object"
},
"profileIds": {
"description": "List of profile IDs to update.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"profileIds",
"bookmarks"
],
"type": "object"
}