Open asergeant01 opened 1 week ago
@asergeant01 Thank you for bringing it to our attention.
We discussed it with the team and will look into improving objects in the upcoming release.
@mikhail-vl Awesome. Thanks. Until such times and for anyone else finding this, I was able to work around using the following:
var jsonData = {
"createdBy": createdBy,
"startsAt": startTime.toISOString(),
"endsAt": endTime.toISOString(),
"comment": comment,
"matchers": JSON.stringify(matchers).replaceAll('\"', '\\"')
}
@asergeant01 Thank you for providing temporary solution.
I am following this blog post.
My Update Request "Create Payload" is basically:
Whereby
matchers
is a further array of objects that is dynamically build based from form data.My Query Editor "URL options" body content is the following:
This produces the following output on the request:
I would expect it to parse this or alternatively, provide the option to let the developer build the full body in "create payload" and return the
JSON.stringify
which can be inserted into the body content using${payload}