Flows Webhook Request Body Always Use String?

Now I’m using Directus Data Studio 11.12.0 and i’m just realizing my flows with webhook/request URL didn’t work anymore.

And the culprit is stringify the request body. I checked request body:
{ “chatId”: ”somevalue”} sent to server become like this: “body”: “{\n \“chat_id\”: \”-4982\“}” and offcourse the server reject it and said there’s no chat_id field. I tried raw value, json value, all always converted to single string in body.

What did i missed here? TIA.

Hi @ymys ! Sorry to hear that some of your flows are no longer working.

Are you able to share some more details / specifics about your flows? And maybe some screenshots?

Could be as simple as enclosing as missing quotations in the request body - "{{trigger.payload}}" vs {{trigger.payload}} or could be certainly something more complicated.

It’s very difficult to pinpoint where the issue might be without more info.