Boxberry
Lieferkosten berechnen, Bestellungen verwalten, Pakete verfolgen und Abholpunkte auflisten via Boxberry
Boxberry is a Russian parcel delivery and pickup-point (ПВЗ) network with thousands of locations across Russia. Its API supports delivery calculation, order creation, parcel tracking, and pickup point discovery.
With the Boxberry integration in AACFlow, you can:
- Calculate Delivery: Estimate delivery cost between cities
- Create Order: Create a new delivery order
- Parcel Info (Track): Track a parcel by tracking code
- Orders List: List recent orders in your account
- List Cities: Retrieve available delivery cities
- List Points (ПВЗ): Enumerate pickup point locations
This integration enables e-commerce fulfillment workflows, automated shipping cost estimation, and order management within Boxberry's network.
Nutzungsanleitung
Integrate Boxberry into the workflow to manage deliveries. Requires a Boxberry API token from your account at boxberry.ru under Settings → API Access.
Tools
boxberry_calculate
Calculate delivery cost
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
apiToken | string | Ja | Boxberry API token |
fromCity | string | Ja | Origin city |
toCity | string | Ja | Destination city |
weight | number | Ja | Package weight in grams |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
price | number | Delivery cost |
period | string | Estimated delivery period |
boxberry_create_order
Create a delivery order
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
apiToken | string | Ja | Boxberry API token |
fromCity | string | Ja | Origin city |
toCity | string | Ja | Destination city |
weight | number | Ja | Package weight in grams |
orderNumber | string | Ja | Your order reference number |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
trackingCode | string | Boxberry tracking code |
orderId | string | Created order ID |
boxberry_parcel_info
Track a parcel
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
apiToken | string | Ja | Boxberry API token |
trackingCode | string | Ja | Boxberry tracking code |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
status | string | Current parcel status |
events | array | Tracking event history |
boxberry_list_cities
List delivery cities
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
apiToken | string | Ja | Boxberry API token |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
cities | array | Array of available city objects |
boxberry_list_points
List pickup points (ПВЗ)
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
apiToken | string | Ja | Boxberry API token |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
points | array | Array of pickup point objects with addresses |
Links
- Official API: https://api.boxberry.ru/
- AACFlow block source: apps/aacflow/blocks/blocks/boxberry.ts

