How to pass complete body data from prior HTTP GET request into HTTP PUT request (with some minor changes)?

Solution outlined below:

  1. GET request. Do not parse JSON response
  2. Text Parser Search and Replace, using Regex to find field that I need to update and mapping new updated value. Could also create more modules if needing to replace more data, or use a splitter to add new data quicker, then merge it all together before the next step.
  3. Transform Text Parser to JSON
  4. Parse JSON for PUT body
  5. PUT request with mapped ‘Parse JSON’ in body




u