thirtybees/postnl-api-php
PostNL REST API PHP Bindings
Maintainers
Requires
- php: ^5.6 || ^7.0 || ^8.0
- ext-json: *
- composer/ca-bundle: ^1.2
- guzzlehttp/psr7: ^1.7 || ^2.0
- php-http/promise: ^1.0
- psr/cache: ^1.0 || ^2.0 || ^3.0
- psr/http-message: ^1.0
- psr/log: ^1.0 || ^2.0 || ^3.0
- setasign/fpdf: ^1.8
- setasign/fpdi: ^2.0
Requires (Dev)
- cache/void-adapter: ^1.0
- guzzlehttp/guzzle: ^6.0 || ^7.0
- guzzlehttp/promises: ^1.4
- php-http/mock-client: ^1.3
- phpunit/phpunit: >=5.7
- sabre/xml: ^1.5
- symfony/dotenv: ^3.0 || ^4.0 || ^5.0
- wappr/logger: ^1.2
- yoast/phpunit-polyfills: ^0.2
Suggests
- abbadon1334/phpdoc-to-rst: Build the documentation
- giggsey/libphonenumber-for-php: To automatically format and check phone numbers -- supports ^8.12
- guzzlehttp/guzzle: One of the most popular HTTP clients available -- supports ^6.5.3 || ^7.0
- php-http/discovery: Required if you want to use an alternative PSR-18, async or HTTPlug Client
- php-http/httplug: Required if you want to use an alternative PSR-18, async or HTTPlug Client
- php-http/message-factory: Required if you want to use an alternative PSR-18, async or HTTPlug Client
- psr/http-factory: Required if you want to use an alternative PSR-18, async or HTTPlug Client
- sabre/xml: To use the SOAP API -- supports ^1.5
- symfony/http-client: Another popular HTTP client you can use natively -- supports ^5.2
Provides
None
Conflicts
None
Replaces
None
This package is not auto-updated.
Last update: 2022-02-01 13:10:06 UTC
README
👁 Build Status
👁 Documentation Status
👁 codecov
👁 latest stable version
👁 license mit
About
This PHP library for both PostNL's REST and SOAP API aims to provide a simple way to connect your
application with PostNL. By abstracting away needless complexity when processing shipment
information and increased fault-tolerance, you can get up and running with PostNL in minutes.
At the lower level this library uses asynchronous communication and payload splitting for
improved performance.
Important notice
The PHP bindings can connect to both PostNL's SOAP and REST API.
Status
| Service | Status REST | Status SOAP | Version |
|---|---|---|---|
| Addresses | |||
| Adrescheck Nationaal | N/A | N/A | N/A |
| Adrescheck Basis Nationaal | N/A | N/A | N/A |
| Adrescheck Internationaal | N/A | N/A | N/A |
| Geo Adrescheck Nationaal | N/A | N/A | N/A |
| Creditworthiness & Business information | |||
| Bedrijfscheck Nationaal | N/A | N/A | N/A |
| Kredietcheck Zakelijk | N/A | N/A | N/A |
| Send & Track | |||
| Barcode webservice | ✓ | ✓ | 1.1 |
| Labelling webservice | ✓ | ✓ | 2.2 |
| Confirming webservice | ✓ | ✓ | 2.0 |
| Shippingstatus webservice | ✓ | ✓ | 2.0 |
| Shipping webservice | ✓ | ✓* | 2.0 |
| Delivery Options | |||
| Deliverydate webservice | ✓ | ✓ | 2.2 |
| Location webservice | ✓ | ✓ | 2.1 |
| Timeframe webservice | ✓ | ✓ | 2.1 |
| Checkout webservice | Planned | Planned* | 1.0 |
| Bulkmail webservice | N/A | N/A | N/A |
* SOAP version not available. Falls back on the REST API.
Instructions
- Clone this repo
- Run
composer install(Don't have composer? Visit https://getcomposer.org/) - Optionally run
composer require guzzlehttp/guzzleto use Guzzle instead of cURL directly - You're good to go! A small example can be found in this README. Check out the full documentation for a quick start guide.
Documentation
Example
Allow a user to download a label using the default REST API
<?php use Firstred\PostNL\PostNL; use Firstred\PostNL\Entity\Customer; use Firstred\PostNL\Entity\Address; use Firstred\PostNL\Entity\Shipment; use Firstred\PostNL\Entity\Dimension; require_once __DIR__.'/vendor/autoload.php'; $customer = Customer::create([ 'CollectionLocation' => '123456', 'CustomerCode' => 'DEVC', 'CustomerNumber' => '11223344', 'ContactPerson' => 'Peter', 'Address' => Address::create([ 'AddressType' => '02', 'City' => 'Hoofddorp', 'CompanyName' => 'PostNL', 'Countrycode' => 'NL', 'HouseNr' => '42', 'Street' => 'Siriusdreef', 'Zipcode' => '2132WT', ]), 'Email' => 'info@voorbeeld.nl', 'Name' => 'Michael', ]); $apikey = 'YOUR_API_KEY_HERE'; $sandbox = false; $postnl = new PostNL($customer, $apikey, $sandbox); $barcode = $postnl->generateBarcodeByCountryCode('NL'); $shipment = Shipment::create([ 'Addresses' => [ Address::create([ 'AddressType' => '01', 'City' => 'Utrecht', 'Countrycode' => 'NL', 'FirstName' => 'Peter', 'HouseNr' => '9', 'HouseNrExt' => 'a bis', 'Name' => 'de Ruijter', 'Street' => 'Bilderdijkstraat', 'Zipcode' => '3521VA', ]), ], 'Barcode' => $barcode, 'Dimension' => new Dimension(/* weight */ '2000'), 'ProductCodeDelivery' => '3085', ]); header('Content-Type: application/pdf'); header('Content-Disposition: attachment; filename="label.pdf"'); echo base64_decode($postnl->generateLabel( /* The actual shipment */ $shipment, /* The output format */ 'GraphicFile|PDF', /* Immediately confirm the shipment */ true ) ->getResponseShipments()[0] ->getLabels()[0] ->getContent() ); exit;
Full documentation
The full documentation can be found on this page: https://postnl-php.readthedocs.io/
Building the documentation
The documentation is automatically built and hosted on readthedocs.io. You can build a local HTML copy by installing Sphinx and running
pip install -r docs/requirements.txt
to install the requirements, followed by
sphinx-build -b html docs builddir
to build the HTML output in the directory builddir.
License
This library has been licensed with the MIT license.
