Kirill Bondar 10/28/2024 4:32:47 AM Yes, this seems to be a new wave in API design when they embed the result from other APIs in their response.
Implementation, however, is not just to add an extra parameter to Response(), more substantial change would be required.
Meanwhile you can use the following hack:
* Store Response("$.content") into Text - Multiline column * Prepare new webhook to process JSON specified in "content" field. * Call URL your webhook specifying Content-Type: application/json in headers, Text as Body format and passing the value of your multiline text as the body. Any extra information needed for webhook can be passed via URL parameters for simplicity and used via URLParam(URL(), "paramName") function in webhook.
|