What do you want to automate

with Basin and Sinch?

Prompt, edit and deploy AI agents that connect to Basin, Sinch and 2,800+ other apps in seconds.

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
Send Fax with Sinch API on New Submission Received from Basin API
Basin + Sinch
 
Try it
Send Message with Sinch API on New Submission Received from Basin API
Basin + Sinch
 
Try it
New Submission Received from the Basin API

Emit new event on each new form submission received.

 
Try it
New Fax Received (Instant) from the Sinch API

Emit new event when a new fax is received. See the documentation

 
Try it
New Message Received (Instant) from the Sinch API

Emit new event when a new message is received. See the documentation

 
Try it
Send Fax with the Sinch API

Send a fax to a contact. See the documentation

 
Try it
Send Message with the Sinch API

Send a message to a contact. See the documentation

 
Try it
Integrate the Basin API with the Sinch API
Setup the Basin API trigger to run a workflow which integrates with the Sinch API. Pipedream's integration platform allows you to integrate Basin and Sinch remarkably fast. Free for developers.

Overview of Basin

The Basin API provides a powerful platform for automating form submissions, gathering feedback, and conducting surveys with ease. By leveraging the Pipedream's serverless execution model, you can trigger workflows in response to new form submissions, process and analyze the data, and take action in countless other apps. Whether you're routing form data to a CRM, generating support tickets, or synthesizing customer insights, Basin on Pipedream simplifies these tasks with its event-driven architecture and seamless integrations.

Connect Basin

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    basin: {
      type: "app",
      app: "basin",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://usebasin.com/api/v1/submissions`,
      params: {
        api_token: `${this.basin.$auth.api_key}`,
      },
    })
  },
})

Connect Sinch

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    sinch: {
      type: "app",
      app: "sinch",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.sinch.$auth.region}.conversation.api.sinch.com/v1/projects/${this.sinch.$auth.project_id}/contacts`,
      headers: {
        Authorization: `Bearer ${this.sinch.$auth.oauth_access_token}`,
      },
    })
  },
})

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