Packing stations
Attributes
Name | Type | Required | Description |
---|---|---|---|
idpacking_station | integer | generated | Unique identifier for the packing station |
name | string | required | Name of the packing station |
printer_packinglists | Printer | optional | Printer to use for packing lists |
printer_shipping_labels | Printer | optional | Printer to use for shipping labels |
printer_shipping_documents | Printer | optional | Printer to use for shipping documents |
printer_product_labels | Printer | optional | Printer to use for product labels |
Get all packing stations
Retrieve a list of all packing stations.
GET
https://example.com/api/v1/packingstations
HTTP/1.1 200 OK
[
{
"idpacking_station": 1,
"name": "Paktafel 1",
"printer_packinglists": null,
"printer_shipping_labels": null,
"printer_shipping_documents": null,
"printer_product_labels": {
"idprinter": 1,
"name": "Paktafel 1 barcode printer",
"format": "custom",
"custom_width": 95,
"custom_height": 30,
"zpl_support": false,
"printnode_printerid": 10000001
}
}, {
"idpacking_station": 2,
"name": "Kantoor",
"printer_packinglists": {
"idprinter": 2,
"name": "Kantoor printer",
"format": "a4",
"custom_width": null,
"custom_height": null,
"zpl_support": false,
"printnode_printerid": 10000002
},
"printer_shipping_labels": null,
"printer_shipping_documents": {
"idprinter": 2,
"name": "Kantoor printer",
"format": "a4",
"custom_width": null,
"custom_height": null,
"zpl_support": false,
"printnode_printerid": 10000002
},
"printer_product_labels": null
}
]
Get single packing station
Retrieve details of a specific packing station by its ID.
GET
https://example.com/api/v1/packingstations/{id}
HTTP/1.1 200 OK
{
"idpacking_station": 1,
"name": "Paktafel 1",
"printer_packinglists": null,
"printer_shipping_labels": null,
"printer_shipping_documents": null,
"printer_product_labels": {
"idprinter": 1,
"name": "Paktafel 1 barcode printer",
"format": "custom",
"custom_width": 95,
"custom_height": 30,
"zpl_support": false,
"printnode_printerid": 10000001
}
}
Read more Fulfilment