My question:
I need to send a request to an api, where i need to build the request dynamically by adding variables in the url.
The url needs to be formed like that:
https://example.com/portal/customer/{{customerId}}/
The customerId changes from request to request. But it’s not defined like in other api with customerid={{customerId}}
What I can easily achieve is:
https://example.com/portal/customer/{{customerId}}/?customerId=123
What I need is https://example.com/portal/customer/123
Any ideas?
Thanks a lot and best regards