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
{{ message }}
This repository was archived by the owner on May 11, 2020. It is now read-only.
A PHP 5.2+ class, which offers methods to directly talk with the [Postcode.nl API](https://api.postcode.nl/documentation) through the REST endpoint offered.
5
-
You will need to create an account with the [Postcode.nl API](https://api.postcode.nl) service.
4
+
A PHP 5.3+ class, which offers methods to directly talk with the [Postcode.nl API](https://api.postcode.nl/documentation) through the REST endpoint offered.
5
+
You will need to create an account with the [Postcode.nl API](https://services.postcode.nl/adresdata/api) service.
6
6
7
-
Implements both the [Address service](https://api.postcode.nl/documentation/address-api-description) and the [Signal service](https://api.postcode.nl/documentation/signal-api-description).
7
+
Implements both the [Address service](https://services.postcode.nl/adres-api) and the [Signal service](https://services.postcode.nl/adres-api/signaal).
8
8
9
9
License
10
10
=============
@@ -25,8 +25,8 @@ Include the class in your PHP project, instantiate the PHP class with your authe
25
25
You can handle errors by catching the defined Exception classes.
26
26
(See the 'library/PostcodeNl/Api/RestClient.php' file for details on which exceptions can be thrown)
27
27
28
-
* See our [Address API description](https://api.postcode.nl/documentation/address-api-description) for more information
29
-
* See our [Address API method documentation](https://api.postcode.nl/documentation/rest-json-endpoint#address-api) for the possible fields
28
+
* See our [Address API description](https://services.postcode.nl/adresdata/api) for more information
29
+
* See our [Address API method documentation](https://api.postcode.nl/documentation/address-api) for the possible fields
30
30
31
31
```PHP
32
32
<?php
@@ -62,60 +62,4 @@ You can handle errors by catching the defined Exception classes.
62
62
63
63
// Print the address data
64
64
echo var_export($address, true);
65
-
```
66
-
67
-
Usage Signal API
68
-
=============
69
-
70
-
Include the class in your PHP project, instantiate the PHP class with your authentication details and call the 'doSignalCheck' method.
71
-
You can handle errors by catching the defined Exception classes.
72
-
(See the 'library/PostcodeNl/Api/RestClient.php' file for details on which exceptions can be thrown)
73
-
74
-
* See our [Signal API description](https://api.postcode.nl/documentation/signal-api-description) for more information
75
-
* See our [Signal API check method documentation](https://api.postcode.nl/documentation/rest-json-endpoint#signal-api) for the possible fields to pass.
76
-
* See our [basic example](https://api.postcode.nl/documentation/signal-api-example) for a practical example
Copy file name to clipboardExpand all lines: composer.json
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
{
2
2
"name": "postcode-nl/api-restclient",
3
-
"description": "A client to the Postcode.nl API using the REST endpoint. Implements both the Address (Dutch address verification) and Signal (fraud warnings & data enrichment) API services. You will need to create an account at https://api.postcode.nl.",
"description": "A client to the Postcode.nl Address API for Dutch address verification. You will need to create an account at https://api.postcode.nl.",
0 commit comments