TextIt

TextIt provides a way of automating conversational interactions over SMS, messaging bots and phone calls.

Integrate the TextIt API with the Formatting API

Setup the TextIt API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate TextIt and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with Formatting API on New Flow Event from TextIt API
TextIt + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Flow Event from TextIt API
TextIt + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Flow Event from TextIt API
TextIt + Formatting
 
Try it
[Date/Time] Compare Dates with Formatting API on New Flow Event from TextIt API
TextIt + Formatting
 
Try it
[Date/Time] Format with Formatting API on New Flow Event from TextIt API
TextIt + Formatting
 
Try it
New Flow Event from the TextIt API

Emit new event for each new flow event

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Start Flow with the TextIt API

Starts a flow. See docs here

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it

Overview of TextIt

TextIt is an API that specializes in automating SMS, voice, and social messaging workflows. By leveraging Pipedream's integration capabilities, the TextIt API can be used to create powerful communication automations that respond in real-time to incoming messages, dispatch notifications, and interact with users. With Pipedream, these automations can be connected to a plethora of services to enhance CRM systems, facilitate survey collection, or streamline event-driven notifications.

Connect TextIt

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: {
    textit: {
      type: "app",
      app: "textit",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://textit.in/api/v2/org.json`,
      headers: {
        "Authorization": `Token ${this.textit.$auth.api_key}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})