Walmart UCC-128 Label Requirements

For more general information about Orderful's shipping label product, see Generate a UCC-128 (GS1-128) Label.

📘

This is the shipping label for a domestic case shipment. Other types of shipping labels are not currently supported.

In addition to the type property with value WALMART_CASE_DOMESTIC, the following properties can be included in your label payload:

PropertyRequiredMax Length
shipFrom.nameNo20
shipFrom.address1No20
shipFrom.address2No20
shipFrom.cityYes15
shipFrom.stateYes2
shipFrom.zipYes5
shipTo.nameNo20
shipTo.address1No20
shipTo.address2No20
shipTo.cityYes15
shipTo.stateYes2
shipTo.zipYes5
carrier.nameNo40
shipment.proNumberNo40
shipment.billOfLadingNumberNo40
distributionCenter.numberNo5
purchaseOrder.typeNo5
department.numberNo5
purchaseOrder.numberNo10
item.numberNo30
shipment.sscc-18Yes26

Example Payload

{
    "type": "WALMART_CASE_DOMESTIC",
    "shipFrom": {
        "name": "Your Company",
        "address1": "1234 Main St",
        "address2": "Unit 1",
        "city": "Pasadena",
        "state": "CA",
        "zip": "12345"
    },
    "shipTo": {
        "name": "Walmart DC 1234",
        "address1": "2345 2nd St",
        "address2": "Unit 2",
        "city": "New York",
        "state": "NY",
        "zip": "23456"
    },
    "carrier": {
        "name": "USPS"
    },
    "shipment": {
        "billOfLadingNumber": "ABC1234567890",
        "proNumber": "ABC1234567890",
        "sscc-18": "ABC1234567890ABC1234567890"
    },
    "purchaseOrder": {
        "number": "1234567890",
        "type": "1234"
    },
    "department": {
        "number": "1234"
    },
    "distributionCenter": {
        "number": "1234"
    },
    "item": {
        "number": "1234567890"
    }
}

ZPL Response

Orderful will return a HTTP 201 Created along with the ZPL-format text to send to your label printer:

^XA
^CF0,25

^FO0,0^GB305,270,2^FS
^FO20,20^FDShip From:^FS
^FO20,60^FDYour Company^FS

[...]

^XZ

Walmart Shipping Label Example