Hi @Mick282
A substring for that would be quite complicated, but you can have a Flow that extracts that information.
You need two splits and then cycle through the values to get what you want. If you have a Premium subscription, you can create this Flow with a "Request" trigger so that you can re-use this logic everywhere. Then you need to do an HTTP Post with your URL and get the values.
Here's the Flow:
STEP 1: Get the values, so we need to split by "&".

The formula is:
split(triggerBody()['text'],'&')
STEP 2: For each of the values split by "=".

The formula is:
split(items('Apply_to_each'),'=')
STEP 3: Assign to the variables


The Switch formula is:
outputs('Compose_2')[0]And then set to the variables with the formula:
outputs('Compose_2')[1]
That's it.
Is this what you need?
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.
Cheers
Manuel