Custom checkbox field value breaks workflow web request TL;DR I have a service catalog item with a checkbox custom field. when i use that custom field as a placeholder in a workflow web request body, the web request body is empty -- why? Hi, I have an automator workflow that's triggered in response to incoming tickets for a particular type of service request. The corresponding service catalog item has a checkbox field on it, called, say, "Is Checked". I want a web request node in the automator workflow to post the value of the checkbox back to my application in a webhook. So, using a placeholder for my service catalog item's custom field, I have a web request body that's configured like this: { "other_field": "example", "is_checked": {{ticket.ri_123_cf_is_checked}} } This workflow works correctly when the checkbox state is true, but when the checkbox value is false it doesn't work -- the body of the web request is empty. See attached image -- the workflow execution logs shows an error and an empty request body. I can repeatedly reproduce th