Label List

Retrieve shipping labels for your company.

GET
/api/v1/shipping/labels?page=1

Description

Returns paginated shipping labels with tracking numbers and recipient details.

Request

Headers

HeaderValueRequired
AuthorizationBearer <access_token>Yes
Content-Typeapplication/jsonYes

Query Parameters

ParameterTypeRequiredDescription
pagenumberNoPage number (1-based). Default is 1.
limitnumberNoRecords per page. Default is 10. Max 100 on tickets, wallet, and shipping labels.
countrystringNoFilter by country code.
start_datestringNoOn or after this date (YYYY-MM-DD; shipping labels also accept MM/DD/YYYY).
end_datestringNoOn or before this date (YYYY-MM-DD; shipping labels also accept MM/DD/YYYY).

Response

FieldTypeDescription
labelsarrayShipping label records.
labels[].idstringLabel pass the full value from the api response in path parameters.
labels[].creator_firstnamestringCreator (Unduit user) first name.
labels[].creator_lastnamestringCreator (Unduit user) last name.
labels[].ship_from_first_namestringShip-from contact first name on the label.
labels[].ship_from_last_namestringShip-from contact last name on the label.
labels[].address_line_1stringShip-from address line 1.
labels[].address_line_2stringShip-from address line 2.
labels[].address_1stringAlias of address_line_1.
labels[].address_2stringAlias of address_line_2.
labels[].citystringShip-from city.
labels[].statestringShip-from state.
labels[].zipstringShip-from postal code.
labels[].countrystringShip-from country code.
labels[].lbsstringPackage weight (pounds).
labels[].ozstringPackage weight (ounces).
labels[].lengthstringPackage length (inches).
labels[].widthstringPackage width (inches).
labels[].heightstringPackage height (inches).
labels[].label_countnumberNumber of labels in the shipment.
labels[].label_to_contactsnumber1 when label was emailed to contacts.
labels[].label_to_menumber1 when label was emailed to the creator.
labels[].recipient_namestringRecipient name.
labels[].recipient_companystringRecipient company.
labels[].label_urlstringURL to download the merged label PDF.
labels[].created_atstringLabel creation timestamp.
labels[].updated_atstringLabel last update timestamp.
labels[].tracking_numbersarrayTracking rows for this label.
labels[].tracking_numbers[].track_numberstringCarrier tracking number.
labels[].tracking_numbers[].pricenumberLabel price.
labels[].tracking_numbers[].label_servicenumberLabel service type ID.
labels[].tracking_numbers[].carrierstringCarrier ID (e.g. 2 = UPS).
labels[].tracking_numbers[].tracking_linkstringCarrier tracking URL.
labels[].usersarrayContact recipients when label_to_contacts is set.
labels[].users[].contact_namestringRecipient contact name.
labels[].users[].contact_emailstringRecipient contact email.
current_pagenumberCurrent page number.
total_pagesnumberTotal pages.
totalnumberTotal matching labels.
per_pagenumberPage size.
fromnumberFirst item index on this page.
tonumberLast item index on this page.

Notes

  • creator_firstname and creator_lastname are the Unduit user who created the label.
  • ship_from_first_name and ship_from_last_name are the ship-from contact on the label; they may differ from the creator.
  • address_1 and address_2 are legacy aliases of address_line_1 and address_line_2 (same values). Both sets are returned for Clover API compatibility.
  • users lists recipients when label_to_contacts is set; each entry has contact_name and contact_email.

Related Endpoints

Did this page help you?