
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2022 03:49 AM
I have an action that creates a payload using 5 payload builder steps
The last step, number 6 uses the payload generated in step 2 as the value on one of the name pairs.
The output looks fine, until tested, where it shows that the value of that payload contains a slot of escape /" in the payload. Which is clearly not what i want.
STEP 6 PAYLOAD
STEP 2 PAYLOAD
Is there a way without using JSON Parser as the client doesn't have the integration hub standard license just starter and without scripting the whole REST again. Is there a way to just format that payload so it doesn't have the slashes in the payload.
Solved! Go to Solution.
- Labels:
-
flow designer

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2022 06:37 AM
Hi
you are a hundred percent spot on with the fact payload builder needs work, the whole flow integrations does it, having useful step plugins and not being licensed is ridiculous.
Finally managed to find an amalgamation of the 2 and went for output the payload in a builder step and managing to then parse that output as a strign:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2024 08:51 PM
Hi @Richard Hine , @PJ 3000 @adrian08
How to implement json builder for below example
{
"name": "John Doe",
"age": 30,
"isStudent": false,
"friends": ["Jane", "Alex", "Michael"],
"address": {
"city": "New York",
"country": "USA"
},
"isMarried": null
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2024 06:43 AM
There's one more weird thing that Payload builder does. It keeps adding quotes. Says the output is not a string, but a True/False, if you pass that to the payload builder step, it does this:
{
"enable_item": "true"
}
My expectation is
{
"enable_item": true
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2025 09:01 AM
Which is odd because the standard is to NOT quote boolean values