Default action of <bes fixlet>

I’m trying to retrieve the ID (i.e. Action1) of the default action of a bes fixlets via session relevancy.

script of default action of bes fixlets… works, and so does (exists default action of bes fixlets…) but I can’t find the inspector to return the ID.

I know the fixlet has a default action because it is displayed when viewing the fixlet via the REST API.

<DefaultAction ID="Action1">
<Description>
<PreLink>Click</PreLink>
<Link>here</Link>
<PostLink>to deploy this action.</PostLink>
</Description>
<ActionScript MIMEType="application/x-Fixlet-Windows-Shell">// Enter your action script here</ActionScript>

any suggestions? thanks

The property is “Content ID” of the “BES Fixlet Action”.

Here is an example:

(
    name of it, 
    content id of default action of it
) of bes fixlets 
    whose (
        display name of site of it = "Patches for Windows" and 
        name of it starts with "MS16-021"
    )


that works. thanks very much.