I need to read an id from a GET request and use that in POST for performing a test. The id that I retrieve from GET is in the form of array from the following expression:
And def reqId = response.teams[*].resource[1].resourceRequestId
`["59aeb24be4b0b17227553d07"]`
I store this Id as variable:
And def reqId = response.teams[*].resource[1].resourceRequestId
When I use this in my POST operation, I get the following error:
exception":"org.springframework.http.converter.HttpMessageNotReadableException","message":"Could not read document: Can not deserialize instance of java.lang.String out of START_ARRAY token\n
Is there a way I can perform JSON.stringify() etc to convert the value to a string or a way to extract it and use it more purposefully in POST request