Hi,
I am newbie and haven’t found an helpful answer yet in the forum.
From my start trigger I receive this JSON and I want to split out the items and execute the workflow for each ID contained in the body, but I am just not getting how to split that. The split node just returns the same as the input.
[
{
"headers":
{
"host":
"xxx",
"x-real-ip":
"xxxx",
"x-forwarded-for":
"xxx",
"x-forwarded-proto":
"https",
"x-forwarded-port":
"443",
"connection":
"close",
"content-length":
"228",
"accept":
"application/json, text/plain, */*",
"content-type":
"application/x-www-form-urlencoded",
"authorization":
"xxxx",
"user-agent":
"axios/1.7.2",
"accept-encoding":
"gzip, compress, deflate, br"
},
"params":
{
},
"query":
{
},
"body":
{
"[ { "ID": "["56fcda38-d904-43b6-9a80-6026902b77c7","f15b5c33-cf13-4c66-9df8-8b9d81f6d0ea","5d07e183-e63e-4dd7-9dfc-6a98cffef0ac","68a79d37-3fce-4843-b226-0a9463f21ac1","35e1c9f9-7366-4b53-8446-8f465c941aee"]" } ]":
""
},
"webhookUrl":
"https://xxx/webhook-test/xxx",
"executionMode":
"test"
}
]
Maybe it is an issue how the “body” is formatted?
{"[\n {\n \"ID\": \"[\"56fcda38-d904-43b6-9a80-6026902b77c7\",\"f15b5c33-cf13-4c66-9df8-8b9d81f6d0ea\",\"5d07e183-e63e-4dd7-9dfc-6a98cffef0ac\",\"68a79d37-3fce-4843-b226-0a9463f21ac1\",\"35e1c9f9-7366-4b53-8446-8f465c941aee\"]\"\n }\n]":""}