Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

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

Topic Labels: API
2393 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Ignacio_Ceballo
4 - Data Explorer
4 - Data Explorer

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 1
Andrew_Johnson1
8 - Airtable Astronomer
8 - Airtable Astronomer

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.