Infobip

Infobip is a multi-channel communications platform

Integrate the Infobip API with the Zendesk API

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

Create Ticket with Zendesk API on New SMS Message (Instant) from Infobip API
Infobip + Zendesk
 
Try it
Create Ticket with Zendesk API on New Whatsapp Message (Instant) from Infobip API
Infobip + Zendesk
 
Try it
Delete Ticket with Zendesk API on New SMS Message (Instant) from Infobip API
Infobip + Zendesk
 
Try it
Delete Ticket with Zendesk API on New Whatsapp Message (Instant) from Infobip API
Infobip + Zendesk
 
Try it
Send SMS with Infobip API on New Ticket (Instant) from Zendesk API
Zendesk + Infobip
 
Try it
New SMS Message (Instant) from the Infobip API

Emit new event when a new SMS message is received.

 
Try it
New Whatsapp Message (Instant) from the Infobip API

Emit new event when a new message is received on Whatsapp.

 
Try it
New Ticket (Instant) from the Zendesk API

Emit new event when a ticket is created

 
Try it
New Ticket Added to View (Instant) from the Zendesk API

Emit new event when a ticket is added to the specified view

 
Try it
Ticket Closed (Instant) from the Zendesk API

Emit new event when a ticket has changed to closed status

 
Try it
Create Ticket with the Zendesk API

Creates a ticket. See the documentation.

 
Try it
Delete Ticket with the Zendesk API

Deletes a ticket. See the documentation.

 
Try it
Send SMS with the Infobip API

Sends an SMS message to a specified number. See the documentation

 
Try it
Send Viber Text Message with the Infobip API

Send a text message to multiple recipients via Viber. See the documentation

 
Try it
Send WhatsApp Text Message with the Infobip API

Sends a WhatsApp text message to a specified number. See the documentation

 
Try it

Overview of Infobip

The Infobip API is a communication platform that enables seamless integration of messaging, voice, and email functionalities into various applications. With Infobip, you can automate notifications, authenticate users via one-time passwords, engage customers across multiple channels, and track communication performance. Pipedream's serverless execution environment lets you create sophisticated workflows that harness the capabilities of Infobip by triggering actions based on events, manipulating data, and connecting with numerous other apps.

Connect Infobip

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: {
    infobip: {
      type: "app",
      app: "infobip",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.infobip.$auth.base_url}.api.infobip.com/sms/1/logs`,
      headers: {
        "Authorization": `App ${this.infobip.$auth.api_key}`,
      },
    })
  },
})

Overview of Zendesk

The Zendesk API enables seamless integration of Zendesk's customer service platform with your existing business processes and third-party applications. By leveraging this API with Pipedream, you can automate ticket tracking, sync customer data, escalate issues, and streamline communication across multiple channels. This can significantly increase efficiency, accelerate response times, and enhance the overall customer experience. Automations can range from simple notifications to complex workflows involving data transformation and multi-step actions across various services.

Connect Zendesk

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: {
    zendesk: {
      type: "app",
      app: "zendesk",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.zendesk.$auth.subdomain}.zendesk.com/api/v2/users/me/`,
      headers: {
        Authorization: `Bearer ${this.zendesk.$auth.oauth_access_token}`,
      },
    })
  },
})