← Sendoso

Get Send Status with Sendoso API

Pipedream makes it easy to connect APIs for Sendoso and 1000+ other apps remarkably fast.

Trigger workflow on
HTTP requests, schedules and app events
Next, do this
Get Send Status with the Sendoso API
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

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

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

Create a workflow to Get Send Status with the Sendoso API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the Get Send Status action
    1. Connect your Sendoso account
    2. Select a Tracking Id
  2. Select a trigger to run your workflow on HTTP requests, schedules or app events
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Get Send Status with Sendoso API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Sendoso
 
Try it
Get Send Status with Sendoso API on New Submission from Typeform API
Typeform + Sendoso
 
Try it
Get Send Status with Sendoso API on Custom Events from Zoom API
Zoom + Sendoso
 
Try it
Get Send Status with Sendoso API on New Submission (Instant) from Jotform API
Jotform + Sendoso
 
Try it
Get Send Status with Sendoso API on New Custom Webhook Events from Stripe API
Stripe + Sendoso
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is 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.

Get Send Status on Sendoso
Description:Track all sent gifts and retrieve analytics information regarding sent gift. [See the docs here](https://sendoso.docs.apiary.io/#reference/send-management/send-tracking/fetch-the-status-of-a-send)
Version:0.0.1
Key:sendoso-get-send-status

Code

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

export default {
  key: "sendoso-get-send-status",
  name: "Get Send Status",
  version: "0.0.1",
  description: "Track all sent gifts and retrieve analytics information regarding sent gift. [See the docs here](https://sendoso.docs.apiary.io/#reference/send-management/send-tracking/fetch-the-status-of-a-send)",
  type: "action",
  props: {
    sendoso,
    trackingId: {
      propDefinition: [
        sendoso,
        "trackingId",
      ],
    },
  },
  async run({ $ }) {
    const { trackingId } = this;
    const response = await this.sendoso.getSendStatus({
      $,
      trackingId,
    });
    $.export("$summary", "Statuses successfully fetched!");
    return response;
  },
};

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
SendososendosoappThis component uses the Sendoso app.
Tracking IdtrackingIdstringSelect a value from the drop down menu.

Authentication

Sendoso uses OAuth authentication. When you connect your Sendoso account, Pipedream will open a popup window where you can sign into Sendoso and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Sendoso API.

Pipedream requests the following authorization scopes when you connect your account:

publicwriteupdate

About Sendoso

Sending platform

More Ways to Use Sendoso

Triggers

New Send Created from the Sendoso API

Emit new event when a new send is created. See docs here

 
Try it
New Send Status Updated from the Sendoso API

Emit new event when a send status is updated. See docs here

 
Try it

Actions

Generate eGift Link with the Sendoso API

Generate a new E-Gift link See the docs here

 
Try it
Send A Physical Gift With Address Confirmation with the Sendoso API

Send a physical gift. See the docs here

 
Try it