Trying to understand why my GetRESTProxy call in a Studio snippet returns a 500 error when I attempt to parse the JSON response immediately after the request. I am using the standard ASSIGN action to map the response body to a variable, but the flow crashes before the IF validation check.
GetRESTProxy('https://api.cxone.com/v1/data', 'GET', '{}')
ASSIGN(responseJson, $RestProxy.Response.Body)
The documentation here implies the body is a raw string, but my Go backend expects a structured object. Am I missing a specific deserialization step in the snippet logic?