SevenSenders - Get Carriers
Description
Section titled “Description”This module lists all available carriers in SevenSenders. It does not require additional parameters beyond the credentials. It makes a GET request to the /carriers endpoint and returns the list of carriers with their ID, name, slug, country, and available services.
Configuration
Section titled “Configuration”| Parameter | Type | Required | Description |
|---|---|---|---|
| credentials_id | credentials | Yes | SevenSenders credential (provider: sevensenders) |
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, "carriers": [ { "id": "dhl_de", "name": "DHL Germany", "slug": "dhl_de", "country": "DE", "services": ["standard", "express"] }, { "id": "hermes_de", "name": "Hermes Germany", "slug": "hermes_de", "country": "DE", "services": ["standard"] } ], "count": 12, "message": "12 transportistas disponibles"}Usage Example
Section titled “Usage Example”Basic case
Section titled “Basic case”{ "credentials_id": "mi_credencial_sevensenders"}API Used
Section titled “API Used”- Endpoint: GET
/carriers - Base: SevenSenders API (via helper
_sevensendersHelper) - Documentation: https://docs.sevensenders.com/
- Useful for knowing the available carriers before creating a shipment
- The returned carrier codes are used in the Create Shipment node
- SevenSenders offers carriers from various European countries
Related Nodes
Section titled “Related Nodes”- SevenSenders - Create Shipment (sevensendersCreateShipment)
- SevenSenders - Track Shipment (sevensendersGetTracking)
- SevenSenders - Cancel Shipment (sevensendersCancelShipment)
- SevenSenders - Get Labels (sevensendersGetLabels)