Hello guys, I’m running into an annoying 422 error code when creating an Airtable base in my existing automation workflow. I followed the steps provided in this video which was published in this community to do this: https://www.youtube.com/watch?v=pNQAHVWsoc8
Furthermore, I followed the steps in Airtable on how to create a base: Airtable Web API
My body JSON string outlines what I want the base to be named, the table I wish to implement, and the fields required but I keep getting the issue in the third screenshot.
If anyone could assist me in overcoming this, I’d really appreciate it!
JSON string in Body value:
{
“name”: “{{22.Company Name
}} Website Knowledge Base”,
“tables”: [
{
“name”: “Website Knowledge Base Storage”,
“fields”: [
{
“name”: “A. Company Overview”,
“type”: “multilineText”
},
{
“name”: “B. Products and Services”,
“type”: “multilineText”
},
{
“name”: “C. Blog Posts and Articles”,
“type”: “multilineText”
},
{
“name”: “D. Case Studies and Testimonials”,
“type”: “multilineText”
},
{
“name”: “E. Team and Leadership”,
“type”: “multilineText”
},
{
“name”: “F. FAQs”,
“type”: “multilineText”
},
{
“name”: “G. Contact Information”,
“type”: “multilineText”
},
{
“name”: “H. Press Releases and Media”,
“type”: “multilineText”
},
{
“name”: “I. Social Media Links and Feeds”,
“type”: “multilineText”
},
{
“name”: “J. Policies and Certifications”,
“type”: “multilineText”
},
{
“name”: “K. Visual Assets”,
“type”: “multilineText”
},
{
“name”: “Original URL”,
“type”: “url”
},
{
“name”: “Last Scraped Date”,
“type”: “date”
}
]
}
],
“workspaceid”: “wspwmdLX4mUv4E6xt”
}