Developer documentation

Label Types

Use the Label Types API to retrieve the available print label types for order documents.

When creating an order with a document that must be printed in a specific way, you can pass a label type in the order document model.

**Related resources**

• Order document model: Orders

Response models

These response models describe the objects returned by this resource.

The label type model

FieldDescription
id
stringOptional
Read-only. Unique identifier for the label type.
code
stringOptional
Internal code for the print label type.
name
stringOptional
Human-readable label type name.

List all label types

GET/wms/label-types/

List available label types.

Try it

Send a live request against the development middleware using your current API test session.

GET
Request examplecURL
curl https://eu-dev.middleware.ewarehousing-solutions.com/wms/label-types/
Response exampleJSON
[
  {
    "id": "322c6ccd-3aa6-4c57-ad52-f12070d425b0",
    "code": "RIBR-58",
    "label": "Ribbelrand 58mm"
  }
]