Skip to content

SevenSenders - Get Labels

This module gets the labels associated with a shipment in SevenSenders. It receives the shipment ID and makes a GET request to the /shipments/{shipment_id}/labels endpoint. It returns the list of available labels with their ID, format, URL, and creation date.

ParameterTypeRequiredDescription
credentials_idcredentialsYesSevenSenders credential (provider: sevensenders)
shipment_idtextYesShipment ID to get labels for

A sevensenders type credential is required with the following fields:

  • api_key: SevenSenders API Key
{
"success": true,
"shipment_id": "ss-12345",
"labels": [
{
"id": "lbl-001",
"format": "PDF",
"url": "https://api.sevensenders.com/labels/lbl-001.pdf",
"created_at": "2026-03-23T08:00:00Z"
}
],
"count": 1,
"message": "1 etiquetas encontradas"
}
{
"credentials_id": "mi_credencial_sevensenders",
"shipment_id": "ss-12345"
}
  • A shipment can have multiple labels if it contains several packages
  • Useful for downloading or reprinting labels for already created shipments
  • The format can be PDF or other depending on the carrier
  • SevenSenders - Create Shipment (sevensendersCreateShipment)
  • SevenSenders - Get Carriers (sevensendersGetCarriers)
  • SevenSenders - Track Shipment (sevensendersGetTracking)
  • SevenSenders - Cancel Shipment (sevensendersCancelShipment)