I have situation like this:
* url address
* header Authorization = 'Bearer ' + accessToken
* configure ssl = true
* path 'compliance' + '/accept'
* param id = 10101016
* def req = {"decision": <decision>, "reasonId": <reasonId>, "comment": <comment>}
Given request req
When method PUT
Then status 200
resault: .../compliance/accept?id=10101016
And always my param go to end in url but I want this param between url like this: .../compliance?=id10101016/accept
How can I do this ? I am trying everythink but not working :/
I am looking answer on the internet but everywhere param go to the end of url.