Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
sleiman committed Oct 18, 2018
1 parent c410967 commit ee2b7fc
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,21 @@ Use the entry ID to delete the entry
$delete_contact = $airtable->deleteContent("Contacts/{entry-id}");
```

### Quick Check (new)
Find a record or many with one line. It's useful when you want to know if a user is already registered or if the same SKU is used.
The response will return "count" and "records".
```php
$check = $airtable->quickCheck("Contacts",$field,$value);

$check = $airtable->quickCheck("Contacts","Email","[email protected]");
if($check->count > 0){
// the value is already there
var_dump($check->records)
} else {
// it's not there
}
```

## Credits

Copyright (c) 2018 - Programmed by Sleiman Tanios & Guillaume Laliberté

0 comments on commit ee2b7fc

Please sign in to comment.