← HTTP / Webhook + Sendcloud integrations

Create Or Update Integration Shipment with Sendcloud API on New Requests from HTTP / Webhook API

Pipedream makes it easy to connect APIs for Sendcloud, HTTP / Webhook and 2,800+ other apps remarkably fast.

Trigger workflow on
New Requests from the HTTP / Webhook API
Next, do this
Create Or Update Integration Shipment with the Sendcloud API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a HTTP / Webhook trigger and Sendcloud action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Requests trigger
    1. Optional- Configure Body Only
    2. Optional- Configure Response Status Code
    3. Optional- Configure Response Content-Type
    4. Optional- Configure Response Body
    5. Connect your HTTP / Webhook account
  3. Configure the Create Or Update Integration Shipment action
    1. Connect your Sendcloud account
    2. Select a Integration ID
    3. Configure Address
    4. Configure Address 2
    5. Configure Company Name
    6. Configure Created At
    7. Select a Currency
    8. Configure Customs Invoice Number
    9. Select a Customs Shipment Type
    10. Configure Email
    11. Configure External Order ID
    12. Configure External Shipment ID
    13. Configure House Number
    14. Configure Name
    15. Configure Order Number
    16. Configure Order Status ID
    17. Configure Order Status Message
    18. Configure Parcel Items
    19. Configure Payment Status ID
    20. Configure Payment Status Message
    21. Configure Postal Code
    22. Configure Shipping Method Checkout Name
    23. Configure Telephone
    24. Configure To Post Number
    25. Select a country
    26. Select a Service Point
    27. Configure To State
    28. Configure Updated At
    29. Optional- Configure City
    30. Select a Shipping Method ID
    31. Optional- Configure Total Order Value
    32. Optional- Configure Weight
    33. Optional- Configure Checkout Payload
    34. Optional- Configure Width
    35. Optional- Configure Height
    36. Optional- Configure Length
    37. Optional- Configure Costs & Tax Details
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.
Version:0.1.1
Key:http-new-requests

HTTP / Webhook Overview

Build, test, and send HTTP requests without code using your Pipedream workflows. The HTTP / Webhook action is a tool to build HTTP requests with a Postman-like graphical interface.

An interface for configuring an HTTP request within Pipedream's workflow system. The current selection is a GET request with fields for the request URL, authorization type (set to 'None' with a note explaining "This request does not use authorization"), parameters, headers (with a count of 1, though the detail is not visible), and body. Below the main configuration area is an option to "Include Response Headers," and a button labeled "Configure to test." The overall layout suggests a user-friendly, no-code approach to setting up custom HTTP requests.

Point and click HTTP requests

Define the target URL, HTTP verb, headers, query parameters, and payload body without writing custom code.

A screenshot of Pipedream's HTTP Request Configuration interface with a GET request type selected. The request URL is set to 'https://api.openai.com/v1/models'. The 'Auth' tab is highlighted, indicating that authentication is required for this request. In the headers section, there are two headers configured: 'User-Agent' is set to 'pipedream/1', and 'Authorization' is set to 'Bearer {{openai_api_key}}', showing how the OpenAI account's API key is dynamically inserted into the headers to handle authentication automatically.

Here's an example workflow that uses the HTTP / Webhook action to send an authenticated API request to OpenAI.

Focus on integrating, not authenticating

This action can also use your connected accounts with third-party APIs. Selecting an integrated app will automatically update the request’s headers to authenticate with the app properly, and even inject your token dynamically.

This GIF depicts the process of selecting an application within Pipedream's HTTP Request Builder. A user hovers the cursor over the 'Auth' tab and clicks on a dropdown menu labeled 'Authorization Type', then scrolls through a list of applications to choose from for authorization purposes. The interface provides a streamlined and intuitive method for users to authenticate their HTTP requests by selecting the relevant app in the configuration settings.

Pipedream integrates with thousands of APIs, but if you can’t find a Pipedream integration simply use Environment Variables in your request headers to authenticate with.

Compatible with no code actions or Node.js and Python

The HTTP/Webhook action exports HTTP response data for use in subsequent workflow steps, enabling easy data transformation, further API calls, database storage, and more.

Response data is available for both coded (Node.js, Python) and no-code steps within your workflow.

An image showing the Pipedream interface where the HTTP Webhook action has returned response data as a step export. The interface highlights a structured view of the returned data with collapsible sections. We can see 'steps.custom_request1' expanded to show 'return_value' which is an object containing a 'list'. Inside the list, an item 'data' is expanded to reveal an element with an 'id' of 'whisper-1', indicating a model created by and owned by 'openai-internal'. Options to 'Copy Path' and 'Copy Value' are available for easy access to the data points.

Trigger Code

import http from "../../http.app.mjs";

// Core HTTP component
export default {
  key: "http-new-requests",
  name: "New Requests",
  description: "Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.",
  version: "0.1.1",
  type: "source",
  props: {
    httpInterface: {
      type: "$.interface.http",
      customResponse: true,
    },
    emitBodyOnly: {
      type: "boolean",
      label: "Body Only",
      description: "This source emits an event representing the full HTTP request by default. Select `true` to emit the body only.",
      optional: true,
      default: false,
    },
    resStatusCode: {
      type: "string",
      label: "Response Status Code",
      description: "The status code to return in the HTTP response",
      optional: true,
      default: "200",
    },
    resContentType: {
      type: "string",
      label: "Response Content-Type",
      description: "The `Content-Type` of the body returned in the HTTP response",
      optional: true,
      default: "application/json",
    },
    resBody: {
      type: "string",
      label: "Response Body",
      description: "The body to return in the HTTP response",
      optional: true,
      default: "{ \"success\": true }",
    },
    http,
  },
  async run(event) {
    const summary = `${event.method} ${event.path}`;

    this.httpInterface.respond({
      status: this.resStatusCode,
      body: this.resBody,
      headers: {
        "content-type": this.resContentType,
      },
    });

    if (this.emitBodyOnly) {
      this.$emit(event.body, {
        summary,
      });
    } else {
      this.$emit(event, {
        summary,
      });
    }
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
N/AhttpInterface$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
Body OnlyemitBodyOnlyboolean

This source emits an event representing the full HTTP request by default. Select true to emit the body only.

Response Status CoderesStatusCodestring

The status code to return in the HTTP response

Response Content-TyperesContentTypestring

The Content-Type of the body returned in the HTTP response

Response BodyresBodystring

The body to return in the HTTP response

HTTP / WebhookhttpappThis component uses the HTTP / Webhook app.

Trigger Authentication

The HTTP / Webhook API does not require authentication.

About HTTP / Webhook

Get a unique URL where you can send HTTP or webhook requests

Action

Description:Create or update an integration shipment. [See the documentation](https://api.sendcloud.dev/docs/sendcloud-public-api/branches/v2/integrations/operations/create-a-integration-shipment)
Version:0.0.1
Key:sendcloud-create-update-integration-shipment

Sendcloud Overview

The Sendcloud API offers a suite of tools for streamlining shipping processes for e-commerce businesses. Using the API, you can create and manage shipments, print shipping labels, track packages, and handle returns with ease. When integrated with Pipedream, the Sendcloud API enables you to automate your shipping workflow, connect with other apps and services, and create custom notifications and actions based on shipping events.

Action Code

import app from "../../sendcloud.app.mjs";
import utils from "../../common/utils.mjs";

export default {
  key: "sendcloud-create-update-integration-shipment",
  name: "Create Or Update Integration Shipment",
  description: "Create or update an integration shipment. [See the documentation](https://api.sendcloud.dev/docs/sendcloud-public-api/branches/v2/integrations/operations/create-a-integration-shipment)",
  version: "0.0.1",
  type: "action",
  props: {
    app,
    integrationId: {
      propDefinition: [
        app,
        "integrationId",
      ],
    },
    address: {
      description: "The address of the shipment.",
      propDefinition: [
        app,
        "address",
      ],
    },
    address2: {
      propDefinition: [
        app,
        "address",
      ],
      label: "Address 2",
      description: "A secondary address of the shipment.",
    },
    companyName: {
      propDefinition: [
        app,
        "companyName",
      ],
    },
    createdAt: {
      propDefinition: [
        app,
        "createdAt",
      ],
    },
    currency: {
      propDefinition: [
        app,
        "currency",
      ],
    },
    customsInvoiceNr: {
      propDefinition: [
        app,
        "customsInvoiceNr",
      ],
    },
    customsShipmentType: {
      propDefinition: [
        app,
        "customsShipmentType",
      ],
    },
    email: {
      propDefinition: [
        app,
        "email",
      ],
    },
    externalOrderId: {
      propDefinition: [
        app,
        "externalOrderId",
      ],
    },
    externalShipmentId: {
      propDefinition: [
        app,
        "externalShipmentId",
      ],
    },
    houseNumber: {
      propDefinition: [
        app,
        "houseNumber",
      ],
    },
    name: {
      propDefinition: [
        app,
        "name",
      ],
    },
    orderNumber: {
      propDefinition: [
        app,
        "orderNumber",
      ],
    },
    orderStatusId: {
      propDefinition: [
        app,
        "orderStatusId",
      ],
    },
    orderStatusMessage: {
      propDefinition: [
        app,
        "orderStatusMessage",
      ],
    },
    parcelItems: {
      propDefinition: [
        app,
        "parcelItems",
      ],
    },
    paymentStatusId: {
      propDefinition: [
        app,
        "paymentStatusId",
      ],
    },
    paymentStatusMessage: {
      propDefinition: [
        app,
        "paymentStatusMessage",
      ],
    },
    postalCode: {
      propDefinition: [
        app,
        "postalCode",
      ],
    },

    shippingMethodCheckoutName: {
      propDefinition: [
        app,
        "shippingMethodCheckoutName",
      ],
    },
    telephone: {
      propDefinition: [
        app,
        "telephone",
      ],
    },
    toPostNumber: {
      propDefinition: [
        app,
        "toPostNumber",
      ],
    },
    country: {
      propDefinition: [
        app,
        "country",
      ],
    },
    toServicePoint: {
      propDefinition: [
        app,
        "servicePointId",
        ({ country }) => ({
          country,
        }),
      ],
    },
    toState: {
      propDefinition: [
        app,
        "toState",
      ],
    },
    updatedAt: {
      propDefinition: [
        app,
        "updatedAt",
      ],
    },
    city: {
      propDefinition: [
        app,
        "city",
      ],
      description: "The city of the shipment.",
    },
    shippingMethod: {
      propDefinition: [
        app,
        "shippingMethodId",
      ],
    },
    totalOrderValue: {
      propDefinition: [
        app,
        "totalOrderValue",
      ],
    },
    weight: {
      propDefinition: [
        app,
        "weight",
      ],
    },
    checkoutPayload: {
      propDefinition: [
        app,
        "checkoutPayload",
      ],
    },
    width: {
      type: "string",
      label: "Width",
      description: "Volumetric width (decimal string)",
      optional: true,
    },
    height: {
      type: "string",
      label: "Height",
      description: "Volumetric height (decimal string)",
      optional: true,
    },
    length: {
      type: "string",
      label: "Length",
      description: "Volumetric length (decimal string)",
      optional: true,
    },
    customDetails: {
      propDefinition: [
        app,
        "customDetails",
      ],
    },
  },
  async run({ $ }) {
    const {
      app,
      integrationId,
      address,
      address2,
      city,
      companyName,
      country,
      createdAt,
      currency,
      customsInvoiceNr,
      customsShipmentType,
      email,
      externalOrderId,
      externalShipmentId,
      houseNumber,
      name,
      orderNumber,
      orderStatusId,
      orderStatusMessage,
      parcelItems,
      paymentStatusId,
      paymentStatusMessage,
      postalCode,
      shippingMethod,
      shippingMethodCheckoutName,
      telephone,
      toPostNumber,
      toServicePoint,
      toState,
      totalOrderValue,
      updatedAt,
      weight,
      checkoutPayload,
      width,
      height,
      length,
      customDetails,
    } = this;

    const response = await app.upsertIntegrationShipment({
      $,
      integrationId,
      data: {
        shipments: [
          {
            address,
            address2,
            city,
            company_name: companyName,
            country,
            created_at: createdAt,
            currency,
            customs_invoice_nr: customsInvoiceNr,
            customs_shipment_type: customsShipmentType,
            email,
            external_order_id: externalOrderId,
            external_shipment_id: externalShipmentId,
            house_number: houseNumber,
            name,
            order_number: orderNumber,
            order_status: {
              id: orderStatusId,
              message: orderStatusMessage,
            },
            parcel_items: utils.parseArray(parcelItems),
            payment_status: {
              id: paymentStatusId,
              message: paymentStatusMessage,
            },
            postal_code: postalCode,
            shipping_method: shippingMethod,
            shipping_method_checkout_name: shippingMethodCheckoutName,
            telephone,
            to_post_number: toPostNumber,
            to_service_point: toServicePoint,
            to_state: toState,
            total_order_value: totalOrderValue,
            updated_at: updatedAt,
            weight,
            checkout_payload: utils.parseJson(checkoutPayload),
            width,
            height,
            length,
            custom_details: utils.parseJson(customDetails),
          },
        ],
      },
    });

    $.export("$summary", "Successfully created or updated integration shipment");

    return response;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
SendcloudappappThis component uses the Sendcloud app.
Integration IDintegrationIdstringSelect a value from the drop down menu.
Addressaddressstring

The address of the shipment.

Address 2address2string

A secondary address of the shipment.

Company NamecompanyNamestring

The company name of the shipment.

Created AtcreatedAtstring

Timestamp when the shipment was created in the shop system. Example: 2022-05-07T15:08:12.152000Z

CurrencycurrencystringSelect a value from the drop down menu:EURUSDGBP
Customs Invoice NumbercustomsInvoiceNrstring

Commercial invoice number

Customs Shipment TypecustomsShipmentTypestringSelect a value from the drop down menu:{ "value": "0", "label": "Gift" }{ "value": "1", "label": "Documents" }{ "value": "2", "label": "Commercial Goods" }{ "value": "3", "label": "Commercial Sample" }{ "value": "4", "label": "Returned Goods" }
Emailemailstring

The email of the recipient.

External Order IDexternalOrderIdstring

External order ID assigned by the shop system

External Shipment IDexternalShipmentIdstring

External shipment ID assigned by the shop system

House NumberhouseNumberstring

House number of the recipient

Namenamestring

Name of the recipient

Order NumberorderNumberstring

Unique order number generated manually or by the shop system

Order Status IDorderStatusIdstring

Custom internal shop status ID

Order Status MessageorderStatusMessagestring

User-defined human readable status

Parcel ItemsparcelItemsstring[]

Array of JSON objects describing each item in the parcel. Each item must include the following fields:

  • description (string, required): Description of the product. Example: Bag
  • hs_code (string): Harmonized System Code (<= 12 chars). Example: 01013000
  • origin_country (string | null): ISO 3166-1 alpha-2 country code where the product was produced. Example: NL
  • product_id (string): Internal product ID. Example: 1458734634
  • properties (object): Key-value pairs with additional product properties (e.g., { "color": "Black" })
  • quantity (integer, required): Number of units (>= 1). Example: 2
  • sku (string): Internal stock keeping unit. Example: WW-DR-GR-XS-001
  • value (string, required): Price per item as a decimal string. Example: 19.99
  • weight (string | null): Weight per item as a decimal string. Example: 0.5
  • mid_code (string | null): Manufacturer's Identification code. Example: NLOZR92MEL
  • material_content (string | null): Description of materials. Example: 100% Cotton
  • intended_use (string | null): Intended use of the contents. Example: Personal use

Example item JSON:

{
  "description": "Bag",
  "hs_code": "01013000",
  "origin_country": "NL",
  "product_id": "1458734634",
  "properties": { "color": "Black" },
  "quantity": 2,
  "sku": "WW-DR-GR-XS-001",
  "value": "19.99",
  "weight": "0.5",
  "mid_code": "NLOZR92MEL",
  "material_content": "100% Cotton",
  "intended_use": "Personal use"
}

Provide each array element as a JSON object string in the UI, or programmatically as an array of objects.

Payment Status IDpaymentStatusIdstring

Custom internal payment status ID

Payment Status MessagepaymentStatusMessagestring

User-defined payment status

Postal CodepostalCodestring

Zip code of the recipient

Shipping Method Checkout NameshippingMethodCheckoutNamestring

Human readable shipping method name

Telephonetelephonestring

The telephone number of the recipient.

To Post NumbertoPostNumberstring

The post number of the recipient.

countrycountrystringSelect a value from the drop down menu:{ "label": "Aruba", "value": "AW" }{ "label": "Afghanistan", "value": "AF" }{ "label": "Angola", "value": "AO" }{ "label": "Anguilla", "value": "AI" }{ "label": "Åland Islands", "value": "AX" }{ "label": "Albania", "value": "AL" }{ "label": "Andorra", "value": "AD" }{ "label": "United Arab Emirates", "value": "AE" }{ "label": "Argentina", "value": "AR" }{ "label": "Armenia", "value": "AM" }{ "label": "American Samoa", "value": "AS" }{ "label": "Antarctica", "value": "AQ" }{ "label": "French Southern Territories", "value": "TF" }{ "label": "Antigua and Barbuda", "value": "AG" }{ "label": "Australia", "value": "AU" }{ "label": "Austria", "value": "AT" }{ "label": "Azerbaijan", "value": "AZ" }{ "label": "Burundi", "value": "BI" }{ "label": "Belgium", "value": "BE" }{ "label": "Benin", "value": "BJ" }{ "label": "Bonaire, Sint Eustatius and Saba", "value": "BQ" }{ "label": "Burkina Faso", "value": "BF" }{ "label": "Bangladesh", "value": "BD" }{ "label": "Bulgaria", "value": "BG" }{ "label": "Bahrain", "value": "BH" }{ "label": "Bahamas", "value": "BS" }{ "label": "Bosnia and Herzegovina", "value": "BA" }{ "label": "Saint Barthélemy", "value": "BL" }{ "label": "Belarus", "value": "BY" }{ "label": "Belize", "value": "BZ" }{ "label": "Bermuda", "value": "BM" }{ "label": "Bolivia, Plurinational State of", "value": "BO" }{ "label": "Brazil", "value": "BR" }{ "label": "Barbados", "value": "BB" }{ "label": "Brunei Darussalam", "value": "BN" }{ "label": "Bhutan", "value": "BT" }{ "label": "Bouvet Island", "value": "BV" }{ "label": "Botswana", "value": "BW" }{ "label": "Central African Republic", "value": "CF" }{ "label": "Canada", "value": "CA" }{ "label": "Cocos (Keeling) Islands", "value": "CC" }{ "label": "Switzerland", "value": "CH" }{ "label": "Chile", "value": "CL" }{ "label": "China", "value": "CN" }{ "label": "Côte d'Ivoire", "value": "CI" }{ "label": "Cameroon", "value": "CM" }{ "label": "Congo, Democratic Republic of the", "value": "CD" }{ "label": "Congo", "value": "CG" }{ "label": "Cook Islands", "value": "CK" }{ "label": "Colombia", "value": "CO" }{ "label": "Comoros", "value": "KM" }{ "label": "Cabo Verde", "value": "CV" }{ "label": "Costa Rica", "value": "CR" }{ "label": "Cuba", "value": "CU" }{ "label": "Curaçao", "value": "CW" }{ "label": "Christmas Island", "value": "CX" }{ "label": "Cayman Islands", "value": "KY" }{ "label": "Cyprus", "value": "CY" }{ "label": "Czechia", "value": "CZ" }{ "label": "Germany", "value": "DE" }{ "label": "Djibouti", "value": "DJ" }{ "label": "Dominica", "value": "DM" }{ "label": "Denmark", "value": "DK" }{ "label": "Dominican Republic", "value": "DO" }{ "label": "Algeria", "value": "DZ" }{ "label": "Ecuador", "value": "EC" }{ "label": "Egypt", "value": "EG" }{ "label": "Eritrea", "value": "ER" }{ "label": "Western Sahara", "value": "EH" }{ "label": "Spain", "value": "ES" }{ "label": "Estonia", "value": "EE" }{ "label": "Ethiopia", "value": "ET" }{ "label": "Finland", "value": "FI" }{ "label": "Fiji", "value": "FJ" }{ "label": "Falkland Islands (Malvinas)", "value": "FK" }{ "label": "France", "value": "FR" }{ "label": "Faroe Islands", "value": "FO" }{ "label": "Micronesia, Federated States of", "value": "FM" }{ "label": "Gabon", "value": "GA" }{ "label": "United Kingdom of Great Britain and Northern Ireland", "value": "GB" }{ "label": "Georgia", "value": "GE" }{ "label": "Guernsey", "value": "GG" }{ "label": "Ghana", "value": "GH" }{ "label": "Gibraltar", "value": "GI" }{ "label": "Guinea", "value": "GN" }{ "label": "Guadeloupe", "value": "GP" }{ "label": "Gambia", "value": "GM" }{ "label": "Guinea-Bissau", "value": "GW" }{ "label": "Equatorial Guinea", "value": "GQ" }{ "label": "Greece", "value": "GR" }{ "label": "Grenada", "value": "GD" }{ "label": "Greenland", "value": "GL" }{ "label": "Guatemala", "value": "GT" }{ "label": "French Guiana", "value": "GF" }{ "label": "Guam", "value": "GU" }{ "label": "Guyana", "value": "GY" }{ "label": "Hong Kong", "value": "HK" }{ "label": "Heard Island and McDonald Islands", "value": "HM" }{ "label": "Honduras", "value": "HN" }{ "label": "Croatia", "value": "HR" }{ "label": "Haiti", "value": "HT" }{ "label": "Hungary", "value": "HU" }{ "label": "Indonesia", "value": "ID" }{ "label": "Isle of Man", "value": "IM" }{ "label": "India", "value": "IN" }{ "label": "British Indian Ocean Territory", "value": "IO" }{ "label": "Ireland", "value": "IE" }{ "label": "Iran, Islamic Republic of", "value": "IR" }{ "label": "Iraq", "value": "IQ" }{ "label": "Iceland", "value": "IS" }{ "label": "Israel", "value": "IL" }{ "label": "Italy", "value": "IT" }{ "label": "Jamaica", "value": "JM" }{ "label": "Jersey", "value": "JE" }{ "label": "Jordan", "value": "JO" }{ "label": "Japan", "value": "JP" }{ "label": "Kazakhstan", "value": "KZ" }{ "label": "Kenya", "value": "KE" }{ "label": "Kyrgyzstan", "value": "KG" }{ "label": "Cambodia", "value": "KH" }{ "label": "Kiribati", "value": "KI" }{ "label": "Saint Kitts and Nevis", "value": "KN" }{ "label": "Korea, Republic of", "value": "KR" }{ "label": "Kuwait", "value": "KW" }{ "label": "Lao People's Democratic Republic", "value": "LA" }{ "label": "Lebanon", "value": "LB" }{ "label": "Liberia", "value": "LR" }{ "label": "Libya", "value": "LY" }{ "label": "Saint Lucia", "value": "LC" }{ "label": "Liechtenstein", "value": "LI" }{ "label": "Sri Lanka", "value": "LK" }{ "label": "Lesotho", "value": "LS" }{ "label": "Lithuania", "value": "LT" }{ "label": "Luxembourg", "value": "LU" }{ "label": "Latvia", "value": "LV" }{ "label": "Macao", "value": "MO" }{ "label": "Saint Martin (French part)", "value": "MF" }{ "label": "Morocco", "value": "MA" }{ "label": "Monaco", "value": "MC" }{ "label": "Moldova, Republic of", "value": "MD" }{ "label": "Madagascar", "value": "MG" }{ "label": "Maldives", "value": "MV" }{ "label": "Mexico", "value": "MX" }{ "label": "Marshall Islands", "value": "MH" }{ "label": "North Macedonia", "value": "MK" }{ "label": "Mali", "value": "ML" }{ "label": "Malta", "value": "MT" }{ "label": "Myanmar", "value": "MM" }{ "label": "Montenegro", "value": "ME" }{ "label": "Mongolia", "value": "MN" }{ "label": "Northern Mariana Islands", "value": "MP" }{ "label": "Mozambique", "value": "MZ" }{ "label": "Mauritania", "value": "MR" }{ "label": "Montserrat", "value": "MS" }{ "label": "Martinique", "value": "MQ" }{ "label": "Mauritius", "value": "MU" }{ "label": "Malawi", "value": "MW" }{ "label": "Malaysia", "value": "MY" }{ "label": "Mayotte", "value": "YT" }{ "label": "Namibia", "value": "NA" }{ "label": "New Caledonia", "value": "NC" }{ "label": "Niger", "value": "NE" }{ "label": "Norfolk Island", "value": "NF" }{ "label": "Nigeria", "value": "NG" }{ "label": "Nicaragua", "value": "NI" }{ "label": "Niue", "value": "NU" }{ "label": "Netherlands, Kingdom of the", "value": "NL" }{ "label": "Norway", "value": "NO" }{ "label": "Nepal", "value": "NP" }{ "label": "Nauru", "value": "NR" }{ "label": "New Zealand", "value": "NZ" }{ "label": "Oman", "value": "OM" }{ "label": "Pakistan", "value": "PK" }{ "label": "Panama", "value": "PA" }{ "label": "Pitcairn", "value": "PN" }{ "label": "Peru", "value": "PE" }{ "label": "Philippines", "value": "PH" }{ "label": "Palau", "value": "PW" }{ "label": "Papua New Guinea", "value": "PG" }{ "label": "Poland", "value": "PL" }{ "label": "Puerto Rico", "value": "PR" }{ "label": "Korea, Democratic People's Republic of", "value": "KP" }{ "label": "Portugal", "value": "PT" }{ "label": "Paraguay", "value": "PY" }{ "label": "Palestine, State of", "value": "PS" }{ "label": "French Polynesia", "value": "PF" }{ "label": "Qatar", "value": "QA" }{ "label": "Réunion", "value": "RE" }{ "label": "Romania", "value": "RO" }{ "label": "Russian Federation", "value": "RU" }{ "label": "Rwanda", "value": "RW" }{ "label": "Saudi Arabia", "value": "SA" }{ "label": "Sudan", "value": "SD" }{ "label": "Senegal", "value": "SN" }{ "label": "Singapore", "value": "SG" }{ "label": "South Georgia and the South Sandwich Islands", "value": "GS" }{ "label": "Saint Helena, Ascension and Tristan da Cunha", "value": "SH" }{ "label": "Svalbard and Jan Mayen", "value": "SJ" }{ "label": "Solomon Islands", "value": "SB" }{ "label": "Sierra Leone", "value": "SL" }{ "label": "El Salvador", "value": "SV" }{ "label": "San Marino", "value": "SM" }{ "label": "Somalia", "value": "SO" }{ "label": "Saint Pierre and Miquelon", "value": "PM" }{ "label": "Serbia", "value": "RS" }{ "label": "South Sudan", "value": "SS" }{ "label": "Sao Tome and Principe", "value": "ST" }{ "label": "Suriname", "value": "SR" }{ "label": "Slovakia", "value": "SK" }{ "label": "Slovenia", "value": "SI" }{ "label": "Sweden", "value": "SE" }{ "label": "Eswatini", "value": "SZ" }{ "label": "Sint Maarten (Dutch part)", "value": "SX" }{ "label": "Seychelles", "value": "SC" }{ "label": "Syrian Arab Republic", "value": "SY" }{ "label": "Turks and Caicos Islands", "value": "TC" }{ "label": "Chad", "value": "TD" }{ "label": "Togo", "value": "TG" }{ "label": "Thailand", "value": "TH" }{ "label": "Tajikistan", "value": "TJ" }{ "label": "Tokelau", "value": "TK" }{ "label": "Turkmenistan", "value": "TM" }{ "label": "Timor-Leste", "value": "TL" }{ "label": "Tonga", "value": "TO" }{ "label": "Trinidad and Tobago", "value": "TT" }{ "label": "Tunisia", "value": "TN" }{ "label": "Turkey", "value": "TR" }{ "label": "Tuvalu", "value": "TV" }{ "label": "Taiwan, Province of China", "value": "TW" }{ "label": "Tanzania, United Republic of", "value": "TZ" }{ "label": "Uganda", "value": "UG" }{ "label": "Ukraine", "value": "UA" }{ "label": "United States Minor Outlying Islands", "value": "UM" }{ "label": "Uruguay", "value": "UY" }{ "label": "United States of America", "value": "US" }{ "label": "Uzbekistan", "value": "UZ" }{ "label": "Holy See", "value": "VA" }{ "label": "Saint Vincent and the Grenadines", "value": "VC" }{ "label": "Venezuela, Bolivarian Republic of", "value": "VE" }{ "label": "Virgin Islands, British", "value": "VG" }{ "label": "Virgin Islands, U.S.", "value": "VI" }{ "label": "Viet Nam", "value": "VN" }{ "label": "Vanuatu", "value": "VU" }{ "label": "Wallis and Futuna", "value": "WF" }{ "label": "Samoa", "value": "WS" }{ "label": "Yemen", "value": "YE" }{ "label": "South Africa", "value": "ZA" }{ "label": "Zambia", "value": "ZM" }{ "label": "Zimbabwe", "value": "ZW" }{ "label": "Canary Islands", "value": "IC" }{ "label": "Kosovo", "value": "XK" }
Service PointtoServicePointintegerSelect a value from the drop down menu.
To StatetoStatestring

The state of the recipient.

Updated AtupdatedAtstring

Timestamp when the shipment was updated in the shop system. Example: 2022-05-07T15:08:12.152000Z

Citycitystring

The city of the shipment.

Shipping Method IDshippingMethodstringSelect a value from the drop down menu.
Total Order ValuetotalOrderValuestring

Total price of the order (decimal string)

Weightweightstring

Total weight of the order (decimal string)

Checkout PayloadcheckoutPayloadobject

Object capturing checkout selections made by the end-consumer.

Required keys:

  • sender_address_id (integer): The sender address ID associated with the order.
  • shipping_product (object): The shipping product chosen at checkout. Must include:
    • code (string)
    • name (string)
    • selected_functionalities (array): Functionalities selected for this product.
  • delivery_method_type (string): One of "standard_delivery", "nominated_day_delivery", or "same_day_delivery".
  • delivery_method_data (object):
    • delivery_date (string, date-time): Delivery date required by the end-consumer.
    • formatted_delivery_date (string): Human-readable date (e.g., "February 21, 2012").
    • parcel_handover_date (string, date-time): Date the parcel must be handed to the carrier.

Example:

{
  "sender_address_id": 12345,
  "shipping_product": {
    "code": "pd-pickup",
    "name": "Pickup Point",
    "selected_functionalities": ["signature", "age_check"]
  },
  "delivery_method_type": "nominated_day_delivery",
  "delivery_method_data": {
    "delivery_date": "2025-02-20T09:00:00Z",
    "formatted_delivery_date": "February 20, 2025",
    "parcel_handover_date": "2025-02-19T18:00:00Z"
  }
}
Widthwidthstring

Volumetric width (decimal string)

Heightheightstring

Volumetric height (decimal string)

Lengthlengthstring

Volumetric length (decimal string)

Costs & Tax DetailscustomDetailsobject

Optional object to provide order-level costs and tax numbers.

  • discount_granted (object): Discount granted on the total order
    • value (string | null): Decimal amount (e.g., "3.99"), pattern: [\d]+(.[\d]+)?
    • currency (string | null): ISO 4217 code (e.g., "EUR")
  • insurance_costs (object): Amount the order is insured for
    • value (string | null): Decimal amount (e.g., "3.99"), pattern: [\d]+(.[\d]+)?
    • currency (string | null): ISO 4217 code (e.g., "EUR")
  • freight_costs (object): Shipping cost of the order
    • value (string | null): Decimal amount (e.g., "3.99"), pattern: [\d]+(.[\d]+)?
    • currency (string | null): ISO 4217 code (e.g., "EUR")
  • other_costs (object): Any other costs (e.g., wrapping costs)
    • value (string | null): Decimal amount (e.g., "3.99"), pattern: [\d]+(.[\d]+)?
    • currency (string | null): ISO 4217 code (e.g., "EUR")
  • tax_numbers (object | null): Tax info about sender, receiver, and importer of records
    • sender (array of Tax Number): Each has { name (string|null), country_code (string|null), value (string|null) }
    • receiver (array of Tax Number): Same structure as sender
    • importer_of_records (array of Tax Number): Same structure as sender

Example:

{
  "discount_granted": { "value": "3.99", "currency": "EUR" },
  "insurance_costs": { "value": "2.50", "currency": "EUR" },
  "freight_costs": { "value": "5.00", "currency": "EUR" },
  "other_costs": { "value": null, "currency": null },
  "tax_numbers": {
    "sender": [{ "name": "VAT", "country_code": "NL", "value": "NL987654321B02" }],
    "receiver": [],
    "importer_of_records": []
  }
}

Action Authentication

Sendcloud uses API keys for authentication. When you connect your Sendcloud account, Pipedream securely stores the keys so you can easily authenticate to Sendcloud APIs in both code and no-code steps.

To retrieve your API Keys,

  • Navigate to your Sendcloud account and sign in
  • Click on the settings menu with the gear icon on the top right
  • Go to “Integrations”
  • Search for “API” within the Search Integrations box, and click Connect

About Sendcloud

Europe’s #1 shipping automation platform

More Ways to Connect Sendcloud + HTTP / Webhook

Create a Parcel with Sendcloud API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Sendcloud
 
Try it
Create a Parcel with Sendcloud API on New Requests from HTTP / Webhook API
HTTP / Webhook + Sendcloud
 
Try it
List Parcels with Sendcloud API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Sendcloud
 
Try it
List Parcels with Sendcloud API on New Requests from HTTP / Webhook API
HTTP / Webhook + Sendcloud
 
Try it
Update a Parcel with Sendcloud API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Sendcloud
 
Try it
New Requests from the HTTP / Webhook API

Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.

 
Try it
New Requests (Payload Only) from the HTTP / Webhook API

Get a URL and emit the HTTP body as an event on every request

 
Try it
New event when the content of the URL changes. from the HTTP / Webhook API

Emit new event when the content of the URL changes.

 
Try it
New Parcel Created from the Sendcloud API

Emit new event each time a parcel is created.

 
Try it
New Return Created from the Sendcloud API

Emit new event each time a return is created.

 
Try it
Send any HTTP Request with the HTTP / Webhook API

Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.

 
Try it
Send GET Request with the HTTP / Webhook API

Send an HTTP GET request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Send POST Request with the HTTP / Webhook API

Send an HTTP POST request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Send PUT Request with the HTTP / Webhook API

Send an HTTP PUT request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Return HTTP Response with the HTTP / Webhook API

Use with an HTTP trigger that uses "Return a custom response from your workflow" as its HTTP Response

 
Try it

Explore Other Apps

1
-
24
of
2,800+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Anthropic (Claude)
Anthropic (Claude)
AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Telegram
Telegram
Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
Premium
Pinterest
Pinterest
Pinterest is a visual discovery engine for finding ideas like recipes, home and style inspiration, and more.
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.