Bookmark Resume Tokens
Secure Elsa bookmark resume URLs with expirations, single-use bookmarks, revocation procedures, logging, and ingress controls.
GET or POST /elsa/api/bookmarks/resume?t=<encrypted-token>Create a time-bounded URL
Use case
Starting lifetime
Make resumption single-use
var bookmark = context.CreateBookmark(new CreateBookmarkArgs
{
Name = "ApprovalBookmark",
Payload = new { ApprovalId = approvalId },
AutoBurn = true,
Callback = OnResumeAsync
});Revoke a compromised token
Validate input and observe attempts
Protect the route at ingress
Related documentation
Last updated