ContributionsMost RecentMost LikesSolutionsRe: Passing custom parameter in Key of Query Param's key, value pair ChrisAdams I was able to resolve the issue with the script provided. Thanks for the help. Re: Passing custom parameter in Key of Query Param's key, value pair ChrisAdams Thanks for the response. My apologies if question was ambiguous. If I understand it correct, you're passing the Param value as a 'Value' in the request, while I want it to be passed as a Key. In your Last Screenshot, key is 'data' and Value is '{getProductParam#result}'. I want Key as {getProductParam#result}, since the value '12345' keeps changing in my API. If I send Query Param as "{getProductParam#result}":"XYZ", SOAP UI is not recognizing the parameter, understandably. Is there a way I can send Key as Product_12345 by making it as a custom Param: {getProductParam#result}???? Passing custom parameter in Key of Query Param's key, value pair Does SOAP UI allow passing Custom parameter value in Key of Query Parameter's Key, Value Pair? For Example: Query Parameter in my API is "product_12345"="1". The value 12345 is coming from previous step's response, so I am storing it as a Customer Param and trying to send the key as "product_${#TestCase#productNumber}" but SOAP UI is unable to recognize it. Is there a way to do it? Thanks in advance. Note: I can't the send the query parameter in a JSON body, it has to go a Form/URL encoded value. SolvedRe: Resource in Test Steps is auto updated when a Resource has 2 instances with different HTTP Methods Thanks for the Response, Richie. But as I mentioned in description, If I use 2 resources in two different steps, both the steps are being updated to have the first resource when I reopen SOAP UI. When I reopen SOAP UI, both getUser and PutUser steps are updated with Get Request Since first resource in my SOAP UI is a GET Request. Resource in Test Steps is auto updated when a Resource has 2 instances with different HTTP Methods I have 2 resources as mentioned below with different http methods and I'm facing issue when I use them as test steps in a Test case in SOAP UI Open source. Resource 1: user/UserID as GET method to fetch all users Resource 2: user/UserID as PUT method to insert a new user Now if I use these 2 resources in a Test case, Resource/Method in Test steps is auto changed to the first Resource with GET method though the aim of my Test step is to PUT the user. Every time I reopen SOAP UI, all my test steps with this resource act as GET method. I Can use a single resource if my test case needs it to be used with different query parameters, but how to use the same resource in a test case twice with different HTTP method(POST and GET in this case)