Sendcloud - Shipping Methods
Description
Section titled “Description”This module lists all available shipping methods in your Sendcloud account. It allows optional filtering by sender address and by return methods. It makes a GET request to the /shipping_methods endpoint and returns the list of methods with their ID, name, carrier, weight ranges, and supported countries.
Configuration
Section titled “Configuration”| Parameter | Type | Required | Description |
|---|---|---|---|
| credentials_id | credentials | Yes | Sendcloud credential (provider: sendcloud) |
| sender_address_id | text | No | Filter by sender address (optional) |
| is_return | boolean | No | Filter only return methods (default: false) |
Credentials
Section titled “Credentials”A sendcloud type credential is required with the following fields:
- public_key: Sendcloud Public Key
- secret_key: Sendcloud Secret Key
Output
Section titled “Output”{ "success": true, "shipping_methods": [ { "id": 8, "name": "Correos Express Paq 24h", "carrier": "correos_express", "min_weight": "0.001", "max_weight": "30.000", "countries": ["ES", "PT"] }, { "id": 12, "name": "Correos Paq Standard", "carrier": "correos", "min_weight": "0.001", "max_weight": "20.000", "countries": ["ES"] } ], "count": 8, "message": "8 metodos de envio disponibles"}Usage Example
Section titled “Usage Example”Basic case
Section titled “Basic case”{ "credentials_id": "mi_credencial_sendcloud"}API Used
Section titled “API Used”- Endpoint: GET
/shipping_methods - Base: Sendcloud API (via helper
_sendcloudHelper) - Documentation: https://docs.sendcloud.sc/api/v2/
- The shipping method ID returned is used as shipment_id in the Create Parcel node
- Countries are returned as an array of ISO 2-letter codes
- Available methods depend on the carriers configured in your Sendcloud account
- You can filter by return methods by enabling is_return