Skip to content

publishbookmark

Daniel Larsson edited this page Feb 14, 2025 · 1 revision

PublishBookmark action

Publish a bookmark.

Note: Specify either title or id, not both.

  • title: Name of the bookmark (supports the use of variables).
  • id: ID of the bookmark.

Example

Publish the bookmark with id "bookmark1" that was created earlier on in the script.

{
    "label" : "Publish bookmark 1",
    "action": "publishbookmark",
    "disabled" : false,
    "settings" : {
        "id" : "bookmark1"
    }
}

Publish the bookmark with the title "bookmark of testuser", where "testuser" is the username of the simulated user.

{
    "label" : "Publish bookmark 2",
    "action": "publishbookmark",
    "disabled" : false,
    "settings" : {
        "title" : "bookmark of {{.UserName}}"
    }
}
Clone this wiki locally