PHPackages                             grip/pakketdienstqls - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. grip/pakketdienstqls

ActiveLibrary[API Development](/categories/api)

grip/pakketdienstqls
====================

Pakketdienst QLS API Client

1.1.0(5mo ago)01Apache-2.0PHP

Since Jul 5Pushed 5mo agoCompare

[ Source](https://github.com/GripOnline/php-pakketdienstqls)[ Packagist](https://packagist.org/packages/grip/pakketdienstqls)[ RSS](/packages/grip-pakketdienstqls/feed)WikiDiscussions main Synced today

READMEChangelogDependenciesVersions (3)Used By (0)

A PHP client for QLS Pakketdienst
=================================

[](#a-php-client-for-qls-pakketdienst)

This library provides a PHP client API for QLS Pakketdienst.

Installing
==========

[](#installing)

The library can be installed using Composer:

```
$ composer require grip/pakketdienstqls
```

Usage
=====

[](#usage)

Creating a client instance and get available products

```
$client = new \Grip\PakketdienstQls\Client($username, $password);

// determine available products and product combinations
var_dump($client->getProductsByCompanyId($companyId));
```

Creating a shipment

```
$shipment = new \Grip\PakketdienstQls\Model\Shipment();

$receiver = new \Grip\PakketdienstQls\Model\Contact();
$receiver->setName('John Doe');
$receiver->setStreet('Main Street');
$receiver->setHouseNumber('123');
$receiver->setPostalCode('1234AB');
$receiver->setLocality('Amsterdam');
$receiver->setCountry('NL');

$shipment->setReceiverContact($receiver);
$shipment->setProductId($productId);
$shipment->setProductCombinationId($productCombinationId);
$shipment->setWeight(1000); // weight in grams
$shipment->setReference('Order #12345');

// store shipment and get PDF label url
$createdShipment = $client->createShipment($companyId, $shipment);
echo $createdShipment->getLabelPdfUrl();
```

Retrieving a shipment to determine its shipment status

```
$shipment = $client->getShipmentById($companyId, $shipmentId);
// determine shipment status
$status = $shipment->getStatus();
echo $status;
```

Find pickup location points near a postal code

```
// get service points near a postal code
$productId = 81; // PostNL Pakje Servicepunt
$servicePoints = $client->getServicePointsByProduct($companyId, $productId, 'NL', '2245AD');
var_dump($servicePoints);
```

Find companies to work with

```
$pageId = 1;
do {
    $companies = $client->getCompanies($pageId);
    foreach ($companies as $company) {
        var_dump($company);
    }
    $page++;
} while ($companies);
```

Get registered webhooks for a company

```
$webhooks = $client->getWebhooks($companyId);
var_dump($webhooks);
```

Determine webhook types and register a new webhook

```
$webhookTypes = $client->getWebhookTypes($companyId);
var_dump($webhookTypes);
$client->createWebhook($companyId, 'https://example.com/webhook', $webhookType);
```

History
=======

[](#history)

v1.1.0

- ObjectTranscoder now parses Dimensions and ProductCombination when parsing Shipment data

v1.0.0

- initial release

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance72

Regular maintenance activity

Popularity1

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~207 days

Total

2

Last Release

157d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/8860699?v=4)[Erik Hoogeboom](/maintainers/CodeBosw8r)[@CodeBosw8r](https://github.com/CodeBosw8r)

---

Top Contributors

[![CodeBosw8r](https://avatars.githubusercontent.com/u/8860699?v=4)](https://github.com/CodeBosw8r "CodeBosw8r (6 commits)")

### Embed Badge

![Health badge](/badges/grip-pakketdienstqls/health.svg)

```
[![Health](https://phpackages.com/badges/grip-pakketdienstqls/health.svg)](https://phpackages.com/packages/grip-pakketdienstqls)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k15](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
