ContributionsMost RecentMost LikesSolutionsHow best to pass a large response object, edit it and then pass to request. Hello all, The tradional use case for our SOAP API is that a user will fetch a large object via one API call response, make an edit to an object property and pass that object into the request body of another API call to perform an update. The object in question can be large and contain nested objects, the API will also delete any property if the property value is null so it's vital that the transfer from response to request transfers all nested properites as it could break the test. What's the best way to replicate this in ReadyAPI? Mapping individual fields across from response to request is too time consuming due to the size of the object. I've tried using the property transfer step but I've had mixed results, can this be done in a groovy script step instead? Thanks