SevenSenders - Get Labels
Description
Section titled “Description”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.
Configuration
Section titled “Configuration”| Parameter | Type | Required | Description |
|---|---|---|---|
| credentials_id | credentials | Yes | SevenSenders credential (provider: sevensenders) |
| shipment_id | text | Yes | Shipment ID to get labels for |
Credentials
Section titled “Credentials”A sevensenders type credential is required with the following fields:
- api_key: SevenSenders API Key
Output
Section titled “Output”{ "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"}Usage Example
Section titled “Usage Example”Basic case
Section titled “Basic case”{ "credentials_id": "mi_credencial_sevensenders", "shipment_id": "ss-12345"}API Used
Section titled “API Used”- Endpoint: GET
/shipments/{shipment_id}/labels - Base: SevenSenders API (via helper
_sevensendersHelper) - Documentation: https://docs.sevensenders.com/
- 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
Related Nodes
Section titled “Related Nodes”- SevenSenders - Create Shipment (sevensendersCreateShipment)
- SevenSenders - Get Carriers (sevensendersGetCarriers)
- SevenSenders - Track Shipment (sevensendersGetTracking)
- SevenSenders - Cancel Shipment (sevensendersCancelShipment)