Troubleshooting of Airtable API: Difference between revisions
| Line 98: | Line 98: | ||
# Verify that the specified field name ("XXX" in this case) exists in the table. | # Verify that the specified field name ("XXX" in this case) exists in the table. | ||
# If it doesn't, ensure you're using the correct field name in your query or action. | # If it doesn't, ensure you're using the correct field name in your query or action. | ||
== How to fix NOT_FOUND or INVALID_PERMISSIONS_OR_MODEL_NOT_FOUND == | |||
Error message: | |||
<pre> | |||
( | |||
[error] => NOT_FOUND | |||
) | |||
</pre> | |||
or | |||
<pre> | |||
{ | |||
"error": { | |||
"type": "INVALID_PERMISSIONS_OR_MODEL_NOT_FOUND", | |||
"message": "Invalid permissions, or the requested model was not found. Check that both your user and your token have the required permissions, and that the model names and/or ids are correct." | |||
} | |||
} | |||
</pre> | |||
Solution: Check the URL of API | |||
== Further reading == | == Further reading == | ||