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.