-
Notifications
You must be signed in to change notification settings - Fork 3
publishbookmark
Daniel Larsson edited this page Feb 14, 2025
·
1 revision
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.
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}}"
}
}
This file has been automatically generated, do not edit manually