I have the ff. Request to save a state on token creation\
/token?grant_type=client_credentials&scope=all&state=Unused
It’s just that I want to know if my token has the same state as the one being looked up for by the request as I will be using the state of the token to determine whether if the token has already been used or not. I’m using the ff. conditions, and it doesn’t seem to determine whatever value is the value of state in my token.
<Step>
<Condition>
(request.queryparam.state NotEquals accesstoken.state)
</Condition>
<Name>RF-TokenAlreadyUsed</Name>
</Step>