Question

How to do a request with JSON inside a form-data parameter

  • 28 July 2022
  • 2 replies
  • 536 views

How to do a request with JSON that has form data as content type or how you can do a request with JSON inside a form data parameter??

I am trying to make a Custom Post Request in Webhooks by Zapier, where we have the data written in JSON format, the JSON object has parameters such as URL, method, headers, params and body which has all attributes, we have content-type as form data in the headers. When we try to Test, we always get an error as follows: 

message: Invalid organization key

messageType: Error

What can be the problem and what is the solution?


This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

2 replies

Userlevel 7
Badge +12

Hi @khaledeissa12!

Off the top of my head an error like ‘Invalid organization key’ suggests that there’s an issue with the authorization for the webhook. Have you tired testing the webhook in an app like Postman? That would be one way to check whether the hook was configured to send the correct authorization. I hope that helps!

Hi @Danvers 

We have the request body as follows:

 

const options = { url: '',

method: '',

headers: {

'Content-Type': '',

'Accept': '',

'AccessKey': ''

},

params: {

'secureKey': ''

},

body: {

'username': 'Alex',

}

 

, This means that the header or the params are not read?, how can we solve such an issue?

And also how is it possible to script JSON inside a form-data parameter?