Common error scenarios and responses
error
4XX
{ "error": { "type": "<error type>", "message": "<error message>" } }
404
curl --request GET \ --url https://api.glideapps.com/tables \ --header 'Authorization: Bearer INVALID'
{ "error": { "type": "request_error", "message": "API key not found, or duplicate IN****ID" } }
400
curl --request PUT \ --url https://api.glideapps.com/stashes/-INVALID-/1 \ --header 'Authorization: Bearer VALID-API-KEY'
{ "error": { "type": "request_validation_error", "message": "Invalid request params: Stash ID must be 256 characters max, alphanumeric with dashes and underscores, no leading dash or underscore" } }
422
{ "error": { "type": "column_id_not_found", "message": "Unknown column ID 'foo'" } }
{ "error": { "type": "column_has_invalid_value", "message": "Invalid value for column 'foo'" } }
{ "error": { "type": "row_not_found", "message": "Row with ID 'XHz6kF2XSTGi1ADDbryjqw' not found" } }
Was this page helpful?