I’m receiving a 422 error when I send a POST request to create a new record. I believe this is due to a specific field.
When I submit a POST request with the following data:
data = {
"records": [
{
"fields": {
"access_key": "an access key",
"user": [
"rec123ABC"
],
"server_name": [
"rec456DEF"
],
"Status": "Live"
}
}
]
}
The request successfully goes through.
However, if I add the following field to the data request:
'outline_id': 3
,
I receive a 422 response.
outline_id is a new column that I’ve recently created. It is in Integer format.
Additionally, when viewing my API documentation for my base called ‘access_keys’, table called ‘access_keys’, I see that under the ‘Create records’ documentation, the outline_id
column is not shown in the example, even though all of my other fields are shown.
The outline_id
column is also not shown under the ‘Update records’ section.