One approach you can try is to combine both values into a single payload (JSON format is clean and easy to parse), then extract them inside the PowerShell script.
For example, instead of passing 2 separate flow variables, send one payload like:
{
"userId": "john.doe",
"expirationDate": "2026-01-31"
}
Then your PowerShell script can read the payload and pull both values (user identification + expiration date).
if you find the response lucrative please like and accept as solution 🙂
Hope this helps. If you can share a sample of the ECC payload you’re generating, I can help suggest how to structure it properly.
