Skip to main content

Hello guys!

Im trying to create a record through the Airtable’s API but I can’t get it.

I am using Origami Studio and this is the message that airtable say:

{

“error” : {

“message” : “Could not find field “fields” in the request body”,

“type” : “INVALID_REQUEST_MISSING_FIELDS”

}

}

And this is my json

{

“fields” : {

“Name” : “Send”

}

}

So… why it is happening?

Thanks a lot!

One of the reasons you may be receiving this error is because you are not passing the data i.e


{

“fields” : {

“Name” : “Send”

}

}


in your request body.

Try calling the API via Postman or Curl…it would help you in figuring out where you are going wrong.


Reply