I am trying to send a custom post request in Webhooks by Zapier, the request body is as follows:
We have the request body as follows:
const options = {
url: '',
method: '',
headers: {
'Content-Type': '',
'Accept': '',
'AccessKey': ''
},
params: {
'secureKey': ''
},
body: {
'username': 'Alex',
}
}
The content-type is form-data, when trying to use this format, I always receive errors when sending the request, How can I solve such an issue?