Hi,
My Collection has 2 APIs, the response from first API should be passed into the query string of second API request. How can I achieve this, I added following to Post-response script of first API:
const data = pm.response.json().data; // get "data" property from response object
pm.collectionVariables.set('data', JSON.stringify(data)); // set as a collection var named 'data'
not sure how to get this data into my query string of my second API which goes: `{{TARGET_SITE}}/api/v1/tickets/{{data}}/section/completion`