Share feedback, ideas and get community help

F
M
a
g
E

Block WebHook with Form-Data

Hi, community and masters
How to implement a api POST using block WEBHOOK but using form-data?

example:
curl --location 'https://domain.com/?step=1&variation=default' \
--form 'uuid=""' \
--form 'field1=""' \
--form 'email="xpto@gmail.com"' \
--form 'phone="12312"' \
--form 'field2="on"'
B
1 comment
In theory you should be able to do that by adding the following header:

Key: Content-Type
Value: x-www-form-urlencoded

Then you can add a JSON body, something like:

Plain Text
{
  "uuid": "id",
  "field1": "{{Name}}"
}
Add a reply
Sign up and join the conversation on Discord
Join