object RMALabelType

Fields

FieldTypeDescription
idString

Public API ID for this identifiable.

legacy_idBigInt

Numeric legacy ID for this identifiable; use only where legacy IDs are required.

tracking_numberString

Carrier tracking number for the shipment or label.

statusString

Current status; use the API status values returned by this field when filtering or updating.

created_dateISODateTime

Created date in ISO-8601 date or datetime format, returned in UTC when time is included.

carrierString

Carrier name or carrier code used for shipping.

shipping_methodString

Carrier service or shipping method code.

costString

Internal cost as a decimal monetary amount; distinct from customer-facing price.

dimensionsDimensions

Package or item dimensions. Length, width, and height are in inches unless account or carrier configuration specifies another unit.

lengthFloatDEPRECATED Use dimensions instead

Length as a decimal number in inches unless the account or carrier configuration specifies another unit.

widthFloatDEPRECATED Use dimensions instead

Width as a decimal number in inches unless the account or carrier configuration specifies another unit.

heightFloatDEPRECATED Use dimensions instead

Height as a decimal number in inches unless the account or carrier configuration specifies another unit.

weightFloatDEPRECATED Use dimensions instead

Weight as a decimal number in ounces unless the account or carrier configuration specifies another unit.

to_nameString

To name for this RMA label.

address1String

Address line 1 for the address or contact.

address2String

Address line 2 for the address or contact.

address_cityString

Address city for this RMA label.

address_stateString

Address state for this RMA label.

address_zipString

Address zip for this RMA label.

address_countryString

Address country for this RMA label.

pdf_locationString

URL for the PDF location resource.

Referenced By

Example

{
  "id": "UmVjb3JkOjEyMzQ=",
  "legacy_id": 1234,
  "tracking_number": "1Z999AA10123456784",
  "status": "pending",
  "created_date": "2026-07-09T15:30:00Z",
  "carrier": "ups",
  "shipping_method": "ups_ground",
  "cost": "19.99",
  "dimensions": {length: 12.5, width: 8.0, height: 4.0},
  "length": 12.5,
  "width": 8.0,
  "height": 4.0,
  "weight": 1.25,
  "to_name": "Acme Corp",
  "address1": "123 Fulfillment Ave",
  "address2": "Suite 100",
  "address_city": "New York",
  "address_state": "NY",
  "address_zip": "10001",
  "address_country": "US",
  "pdf_location": "https://example.com/labels/SHIP-1001.pdf"
}