We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a98770 commit fbf0234Copy full SHA for fbf0234
README.md
@@ -59,11 +59,14 @@ And then browsing to the host and port you specified
59
require_once 'vendor/autoload.php';
60
61
$client = new DataRole\API\Client([
62
- 'authorization' => '_API_TOKEN_',
63
- 'version' => 'v1',
+ 'account' => '__ACCOUNT__',
+ 'secret' => '__SECRET__',
64
+ 'version' => 'v2',
65
]);
66
-$client->permit(['Region' => 'CA_Concord'])->preview();
67
+$client
68
+ ->lookupAddress('776+Buena+Vista+Ave+Alameda+CA+94501')
69
+ ->printPreview();
70
```
71
72
## Frequently Asked Questions ##
0 commit comments