PHPackages                             acut-fulfillment/wms - 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. acut-fulfillment/wms

ActiveLibrary

acut-fulfillment/wms
====================

Official acut fulfillment WMS PHP-SDK

v1.0.0(2y ago)05MITPHPPHP &gt;=8.1.0

Since Feb 16Pushed 2y ago1 watchersCompare

[ Source](https://github.com/acut-fulfillment/wms-php-sdk)[ Packagist](https://packagist.org/packages/acut-fulfillment/wms)[ RSS](/packages/acut-fulfillment-wms/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

acut fulfillment WMS PHP-SDK
============================

[](#acut-fulfillment-wms-php-sdk)

This is the offical PHP-SDK for connecting to the acut fulfillment WMS API.

[![MIT License](https://camo.githubusercontent.com/784362b26e4b3546254f1893e778ba64616e362bd6ac791991d2c9e880a3a64e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d677265656e2e737667)](https://choosealicense.com/licenses/mit/)

Prerequisites
-------------

[](#prerequisites)

- PHP &gt;= 8.1
- Valid API-Key for the acut fulfillment WMS
- Valid useraccount for the acut fulfillment Client Dashboard

Installation
------------

[](#installation)

The recommended way to install this SDK is through [composer](https://getcomposer.org/).

```
composer require acut-fulfillment/wms
```

Getting started
---------------

[](#getting-started)

The following code is all you need to get all your orders paginated.

```
require 'vendor/autoload.php';

$wms = new AcutFulfillment\Wms\Wms(
    apiKey: 'YOUR_API_KEY',
    user: 'YOUR_USERNAME',
    password: 'YOUR_PASSWORD'
);

$req = $wms->getOrders();

if ($req->failed()) {
    echo "Request failed with status {$req->getStatus()} and message {$req->getMessage()}";
} else {
    $orders = $req->getResponse();

    foreach ($orders['data'] as $order) {
        // ...
    }
}
```

If you want to use query parameters like page oder page\_size you can do it as follows

```
$req = $wms->getOrders([
    'current_status' => 1, // returns only open orders
    'page' => 1, // returns the first page
    'page_size' => 10 // returns max. 10 entries per page
]);
```

Functions and params
--------------------

[](#functions-and-params)

EntityMethodFunction and paramsDescriptionOrders`GET``getOrders(array $params = [])`Get paginated ordersOrders`GET``getOrderById(int $id)`Get a single order by its idOrders`GET``getOrderByExtId(string $extId)`Get a single orders by its external idOrders`PUT``cancelOrderById(int $id)`Cancel order by its idOrders`POST``createOrder(array $data)`Create an order (see [example](https://api.wms.acut-services.de/swagger#/Orders/post-orders))Items`GET``getItems(array $params = [])`Get paginated itemsItems`GET``getItemById(int $id)`Get a single item by its idItems`GET``getItemByBarcode(string $barcode)`Get a single item by one of its barcodes (can have several)Swagger documentation
---------------------

[](#swagger-documentation)

You can find the swagger documentation [here](https://api.wms.acut-services.de/swagger)

Support
-------

[](#support)

For support, send an email to

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 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

Unknown

Total

1

Last Release

814d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6a62f9de1ea74db12c373b2f3af7da44de1ef09c6f7f4c7deada2690c6f84aa3?d=identicon)[dominic\_acut](/maintainers/dominic_acut)

---

Top Contributors

[![domolearczyk](https://avatars.githubusercontent.com/u/121173513?v=4)](https://github.com/domolearczyk "domolearczyk (2 commits)")

### Embed Badge

![Health badge](/badges/acut-fulfillment-wms/health.svg)

```
[![Health](https://phpackages.com/badges/acut-fulfillment-wms/health.svg)](https://phpackages.com/packages/acut-fulfillment-wms)
```

###  Alternatives

[neuron-core/neuron-ai

The PHP Agentic Framework.

1.8k245.3k20](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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