Hi,
I have a JSON object with multiple key-value pairs, and I want to remove all keys with empty string (''
) values.
Example:
Input:
{
"Key1": "value1",
"Key2": "value2",
"Key3": ""
}
Expected Output:
{
"Key1": "value1",
"Key2": "value2"
}
How can I achieve this with Power Automate?