jacobdekeizer/statusweb-client

Statusweb API client for PHP

Maintainers

Package info

github.com/jacobdekeizer/statusweb-client

pkg:composer/jacobdekeizer/statusweb-client

Transparency log

Statistics

Installs: 435

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 0

v3.0.0 2026-07-05 12:58 UTC

This package is auto-updated.

Last update: 2026-07-05 12:59:01 UTC


README

Packagist Version Packagist Packagist

Get your api keys from Statusweb > Help > Statusweb API. On this page you can also get the Statusweb API documentation.

Installation

You can install this package via composer:

composer require jacobdekeizer/statusweb-client

Usage

This readme shows basic usage of this package, for all available options look at the class definitions and the api documentation.

Create the client

$client = (new \JacobDeKeizer\Statusweb\Client())
    ->setApiKey('api_key')
    ->setPassword('password');

Create shipment

$deliveryAddress = new \JacobDeKeizer\Statusweb\Resources\Address(
    name: 'Gijs Boersma',
    street: 'Lange laan',
    houseNumber: '29A',
    postalCode: '9281EM',
    city: 'Zevenaar',
    countryCode: \JacobDeKeizer\Statusweb\Enums\CountryCode::NETHERLANDS,
    toTheAttentionOf: 'tav',
    phoneNumber: '+31612345678',
    email: 'noreply@example.com',
);

$labelData = new \JacobDeKeizer\Statusweb\Resources\LabelData(
    returnLabel: true, // return the pdf label in the response
    labelFormat: \JacobDeKeizer\Statusweb\Enums\LabelFormat::PDF,
);

$shipmentRow = new \JacobDeKeizer\Statusweb\Resources\ShipmentRow(
    amount: 1,
    unit: \JacobDeKeizer\Statusweb\Enums\Unit::COLLI,
    weight: 10,
);

$shipment = new \JacobDeKeizer\Statusweb\Resources\Shipment(
    deliveryAddress: $deliveryAddress,
    type: 1, // Statusweb -> Tabellen -> Zendingsoorten
    directSend: true, // when true the shipment is confirmed and can't be deleted
    labelData: $labelData,
    reference: 'My reference',
);

// setters remain available for optional values
$shipment->addShipmentRow($shipmentRow); // ->setShipmentRows accepts an array of ShipmentRows

$shipmentResponse = $client->shipments()->create($shipment);

// Show label pdf
$data = base64_decode($shipmentResponse->getLabels());
header('Content-Type: application/pdf');
echo $data;

Delete shipment

$deleteShipmentResponse = $client->shipments()->delete(12345678); // transportNumber

Send shipments

Sends all shipments where setDirectSend was false

$sendShipmentsResponse = $client->shipments()->send();

Get shipment status

This endpoint does only work if the shipment is in transport or has arrived.

$statusResponse = $client->shipments()->getStatus(12345678); // transportNumber
$statusResponse->getStatuses();

All shipment statuses

This endpoint does only work if the are any shipments in transport or that have arrived.

$statusResponse = $client->shipments()->getAllStatuses();
$statusResponse->getStatuses();

Get statusweb status url

Get the statusweb status url -> does only work when the shipment is in transport or has arrived

$statusLink = $client->shipments()->getStatusUrl(12345678); // transportNumber

Get estimated time of arrival

This endpoint does only work if the shipment is in transport or has arrived.

$etaResponse = $client->shipments()->getEstimatedTimeOfArrival(12345678); // transportNumber

Get label

This endpoint does only work if the shipment isn't confirmed by the send endpoint and directSend for the shipment was false

$labelResponse = $client->labels()->get(9207289743, \JacobDeKeizer\Statusweb\Enums\LabelFormat::PDF);

Exceptions

Each endpoint can throw a StatuswebErrorResponse or StatuswebException. The StatuswebErrorResponse contains the error code and message from statusweb. For example:

try {
    $statusLink = $client->shipments()->getStatusUrl(12345678);
} catch (\JacobDeKeizer\Statusweb\Exceptions\StatuswebErrorResponse $statuswebErrorResponse) {
    $hasLink = $statuswebErrorResponse->getCode() === \JacobDeKeizer\Statusweb\Enums\ResponseCode::NO_STATUS_URL_FOR_SHIPMENT;
} catch (\JacobDeKeizer\Statusweb\Exceptions\StatuswebException $statuswebException) {
    $originalException = $statuswebException->getPrevious(); // do something
}

Register your own session store implementation (Optional)

Statusweb session ids are valid for 2 hours. To reduce the amount of sessionId requests you can create your own SessionStore. By default the JacobDeKeizer\Statusweb\Stores\DefaultSessionStore is used.

use JacobDeKeizer\Statusweb\Contracts\SessionStore;
use JacobDeKeizer\Statusweb\Dto\Session;

class DatabaseSessionStore implements SessionStore
{
    public function put(string $apiKey, Session $session): void
    {
        // save in db
    }

    public function get(string $apiKey): ?Session
    {
        // retrieve from db
    }
}
$client->setSessionStore(new DatabaseSessionStore());