Working through mobile phone logic for Azure AD update user flow.
If a mobile phone doesn't exist, I current have a variable set the value of NULL.

When passing that to variable to Update User (AzureAD activity) or PATCH http GraphAPI call,the variable is an empty string and produces the two "", which isn't accepted as a valid entry

If, within the JSON payload for the graphAPI call, or in the mobilePhone property of Update User, I use the function NULL, the flow will work and accept NULL.

The output now (successful), is the actual word null, not enclosed in "" which graphAPI accpets, and the field within AzureAD is actually null. (no white space for example, which I have read as a workaround!)

Question, how do I pass, actual NULL to the JSON payload, if the variable string is empty?