Skip to main content

Origami Studio - Could not find field \\"fields\\" in the request body

  • June 12, 2018
  • 1 reply
  • 11 views

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!

1 reply

Forum|alt.badge.img+3
  • Participating Frequently
  • 586 replies
  • June 13, 2018

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.