Troubleshooting of Airtable API: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Troubleshooting of Airtable API {{Drafting}} == How to fix INVALID_VALUE_FOR_COLUMN == Error message: <pre> [type] => INVALID_VALUE_FOR_COLUMN [message] => Field "欄位名...") |
No edit summary |
||
| Line 2: | Line 2: | ||
{{Drafting}} | {{Drafting}} | ||
== How to fix INVALID_PERMISSIONS_OR_MODEL_NOT_FOUND == | |||
Error message: | |||
<pre> | |||
[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: Verify the permissions of your API token. | |||
# Navigate to the [https://airtable.com/developers/web/api/authentication#types-of-token Airtable developer page on Authentication - Airtable Web API]. | |||
# From there, proceed to access [https://airtable.com/create/tokens token management]. | |||
# Review the permissions of your API token, such as access levels or scopes of bases. | |||
== How to fix INVALID_VALUE_FOR_COLUMN == | == How to fix INVALID_VALUE_FOR_COLUMN == | ||
Revision as of 17:15, 16 August 2023
Troubleshooting of Airtable API
How to fix INVALID_PERMISSIONS_OR_MODEL_NOT_FOUND
Error message:
[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.
Solution: Verify the permissions of your API token.
- Navigate to the Airtable developer page on Authentication - Airtable Web API.
- From there, proceed to access token management.
- Review the permissions of your API token, such as access levels or scopes of bases.
How to fix INVALID_VALUE_FOR_COLUMN
Error message:
[type] => INVALID_VALUE_FOR_COLUMN [message] => Field "欄位名稱" cannot accept the provided value
Solution: Check the data type of field
- Go to the airtable
- Select the field which met error e.g "欄位名稱" mentioned in the error message
- Menu: Edit field
- Choose the proper data type e.g. switch from "short line text" to "number"
Further reading
References
Troubleshooting of ...
- PHP, cUrl, Python, selenium, HTTP status code errors
- Database: SQL syntax debug, MySQL errors, MySQLTuner errors or PostgreSQL errors
- HTML/Javascript: Troubleshooting of javascript, XPath
- Software: Mediawiki, Docker, FTP problems, online conference software
- Test connectivity for the web service, Web Ping, Network problem, Web user behavior, Web scrape troubleshooting
Template