You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+34-19Lines changed: 34 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ $airtable = new Airtable(array(
66
66
67
67
## Examples
68
68
69
-
A number of examples are placed below to help use this wrapper. The examples assume that the class has already been initiated
69
+
A number of examples are placed below to help use this wrapper. The examples assume that the class has already been initiated.
70
70
71
71
### getApiKey & getBaseId
72
72
@@ -95,7 +95,7 @@ $params: Array. All parameters are optional.
95
95
For more details on accepted parameters, see the airtable documentation.
96
96
```
97
97
98
-
A special parameter not included on the Airtable API has been added called checkOffset. This paramater defaults to true but can be set to false. It allows you to return just 1 page of results instead of all of them if you have more than 5 pages of results being returned.
98
+
A special parameter not included on the Airtable API has been added called checkOffset. This paramater defaults to true but can be set to false. It allows you to return just 1 page of results instead of looping through all of them. (Depending on your rate limits, any more than 500 records in 1 search may return false if those rate limits are reached).
On success, returns the fact that it was deleted along with the id of the deleted record.
238
248
```
239
249
240
250
### getLastLog & getLog
241
251
252
+
Error logging is supported so that your program does not crash on request errors. Any of the functions that require Curl Requests will return false on failure or the record(s) at hand on success. On top of that, each failure or success is logged within the wrapper instance. The following code shows how to access the log:
0 commit comments