I've added a Boolean Field (IsUrgent) to many content types, and I've created a workflow that starts when any of those contents is created.
Even though my field is listed in the Token Helper Tooltip, it's not showing anything. Looking at this question, it is implied that he can retrieve the boolean value when working on forms, I want to do that but with contents.
I've tried this tokens, also with .Text and .Value at the end, and # before the token bracket:
As it appears in the tooltip: {Content.Fields.Page.IsUrgent}
Using request: {Request.Content.Fields.Page.IsUrgent}
Using user: {User.Content.Page.IsUrgent}
Using Workflow: {Workflow.State:Content.Page.IsUrgent}
Using workflow with contentItem: {Workflow.State:Content.ContentItem.Page.IsUrgent}
If it helps, these are working fine: {Content.Id} {Content.ContentType}
Thanks