← Sendoso

Generate eGift Link 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
Generate eGift Link 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 Generate eGift Link with the Sendoso API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the Generate eGift Link action
    1. Connect your Sendoso account
    2. Configure Via
    3. Optional- Select a Template
    4. Select a Group
    5. Select a Touch ID
    6. Optional- Select one or more Recipient Users
    7. Optional- Configure Via From
  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

Generate eGift Link with Sendoso API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Sendoso
 
Try it
Generate eGift Link with Sendoso API on New Submission from Typeform API
Typeform + Sendoso
 
Try it
Generate eGift Link with Sendoso API on Custom Events from Zoom API
Zoom + Sendoso
 
Try it
Generate eGift Link with Sendoso API on New Submission (Instant) from Jotform API
Jotform + Sendoso
 
Try it
Generate eGift Link 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.

Generate eGift Link on Sendoso
Description:Generate a new E-Gift link [See the docs here](https://sendoso.docs.apiary.io/#reference/send-management/generate-egift-links/sending-a-e-gift)
Version:0.0.1
Key:sendoso-generate-egift-link

Code

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

export default {
  key: "sendoso-generate-egift-link",
  name: "Generate eGift Link",
  version: "0.0.1",
  description: "Generate a new E-Gift link [See the docs here](https://sendoso.docs.apiary.io/#reference/send-management/generate-egift-links/sending-a-e-gift)",
  type: "action",
  props: {
    sendoso,
    via: {
      propDefinition: [
        sendoso,
        "via",
      ],
    },
    template: {
      propDefinition: [
        sendoso,
        "template",
      ],
      optional: true,
    },
    groupId: {
      propDefinition: [
        sendoso,
        "groupId",
      ],
    },
    touchId: {
      propDefinition: [
        sendoso,
        "touchId",
        (c) => ({
          groupId: c.groupId,
        }),
      ],
    },
    recipientUsers: {
      propDefinition: [
        sendoso,
        "recipientUsers",
        (c) => ({
          groupId: c.groupId,
        }),
      ],
      optional: true,
    },
    viaFrom: {
      propDefinition: [
        sendoso,
        "viaFrom",
      ],
      optional: true,
    },
  },
  async run({ $ }) {
    const {
      via,
      template,
      touchId,
      viaFrom,
      recipientUsers,
    } = this;

    const response = await this.sendoso.sendGift({
      $,
      via,
      template,
      touch_id: touchId,
      via_from: viaFrom,
      recipient_users: recipientUsers,
    });

    $.export("$summary", `E-Gift successfully generated with tracking code: ${response.tracking_code}!`);
    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.
Viaviastring

Specify you want to generate gift links.

TemplatetemplateintegerSelect a value from the drop down menu.
GroupgroupIdintegerSelect a value from the drop down menu.
Touch IDtouchIdintegerSelect a value from the drop down menu.
Recipient UsersrecipientUsersstring[]Select a value from the drop down menu.
Via FromviaFromstring

Specify the name of your Company or Application.

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

Get Send Status with the Sendoso API

Track all sent gifts and retrieve analytics information regarding sent gift. 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