Skydropx - Get Carriers
Description
Section titled “Description”This module lists all available carriers in your Skydropx account. 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, and available services.
Configuration
Section titled “Configuration”| Parameter | Type | Required | Description |
|---|---|---|---|
| credentials_id | credentials | Yes | Skydropx credential (provider: skydropx) |
Credentials
Section titled “Credentials”A skydropx type credential is required with the following fields:
- api_token: Skydropx API Token
Output
Section titled “Output”{ "success": true, "carriers": [ { "id": "fedex", "name": "FedEx", "slug": "fedex", "services": ["express", "ground", "standard_overnight"] }, { "id": "estafeta", "name": "Estafeta", "slug": "estafeta", "services": ["next_day", "ground", "express"] } ], "count": 6, "message": "6 transportistas disponibles"}Usage Example
Section titled “Usage Example”Basic case
Section titled “Basic case”{ "credentials_id": "mi_credencial_skydropx"}API Used
Section titled “API Used”- Endpoint: GET
/carriers - Base: Skydropx API (via helper
_skydropxHelper) - Documentation: https://docs.skydropx.com/
- Useful for knowing the available carriers and services before creating a shipment or getting a quote
- Available carriers depend on your Skydropx account configuration
- Skydropx includes Mexican carriers like Estafeta, Redpack, J&T, Paquetexpress, in addition to international ones
- The list includes the services supported by each carrier
Related Nodes
Section titled “Related Nodes”- Skydropx - Create Shipment / Label (skydropxCreateShipment)
- Skydropx - Get Rates (skydropxGetRates)
- Skydropx - Track Shipment (skydropxGetTracking)
- Skydropx - Cancel Shipment (skydropxCancelShipment)