API Docs
API Reference
Label Upload From Multiple Files

Label Upload From Multipe Files API

It supports to upload labels for outbound order from Multiple Files. This article introduces the general Label Upload from Multiple Files API use case for easily understanding and applying this API.

Note: Please keep the format type of the all files are the same.

Introduction

The Label Upload from Multiple Files API enables users to upload multiple shipping labels from different files in a single request. This allows for efficient handling of bulk label uploads, especially when labels are generated across multiple sources or systems.

This API is to streamline the process of uploading numerous shipping labels at once, reducing manual input and potential errors. It centralizes label management and enhances the efficiency of outbound shipping operations by integrating multiple files into WMS.

API Request

API: POST /edi/outbound/order/file-upload
Body Request:

FieldNameDescriptionDataTypeLengthRequiredVersionSample
Root
1CompanyIDCompany IDstring15Yes1.3"LT"
2FacilityIDFacility Idstring15Yes1.3"889"
3CustomerIDCustomer Idstring15Yes1.3"AUKINT0001"
4ReferenceNoReference Numberstring50Yes1.3"LIV2020021804-10"
6DocumentTypeDocument Typestring50Yes1.3.3Available Value:
------------------------
BOL
Packing List
Pallet Label (4" x 6")
Shipping Label (4" x 6")
Shipping Label (4" x 8")
Shipping Label (Letter)
UCC Label (4" x 6")
7TrackingNoTracking Number for shipping labelstring50No1.3.3"1Z12345688ABC"
8SubTrackingNosAll tracking numbers for shipping lablesarrayNo1.3.4["1Z12345688ABC1", "1Z12345688ABC2", "1Z12345688ABC3"]
9FilesarrayYes1.3.4File Array
9.1File DataFile DatastringYes1.3.4BASE64 of the file
9.2FileNameFile Namestring50Yes1.3.4"bol.png"

Example

Request

{
	"FacilityID": "889",
	"CompanyID": "LT",
	"CustomerID": "AUKINT0001",
	"ReferenceNo": "Roy022501-1",
	"DocumentType": "Shipping Label (4\" x 6\")",
	"TrackingNo": "1Z1234567800001",
	"Files": [
        {
			"FileData": "iVBORw0KGgoAAAANSUhEUgAAAtoAAALiCAYAAADnx3HzAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAP+lSURBVHhe7N0H2G9VdSf+2..",
			"FileName": "label1.png"
		},
		{
			"FileData": "iVBORw0KGgoAAAANSUhEUgAAAtoAAALiCAYAAADnx3HzAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAP+lSURBVHhe7N0H2G9VdSf+2..",
			"FileName": "label2.png"
		},
		{
			"FileData": "iVBORw0KGgoAAAANSUhEUgAAAtoAAALiCAYAAADnx3HzAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAP+lSURBVHhe7N0H2G9VdSf+2..",
			"FileName": "label3.png"
		}
	]
}