What do you want to automate

with Logo.dev and Belco?

Prompt, edit and deploy AI agents that connect to Logo.dev, Belco and 2,500+ 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
New Conversation from the Belco API

Emit new conversation event when a new conversation is created. See the documentation

 
Try it
Add Note to Conversation with the Belco API

Add a note to a conversation specified by ID. See the documentation

 
Try it
Close Conversation with the Belco API

Close a conversation specified by ID. See the documentation

 
Try it
Create Conversation with the Belco API

Create a conversation from Belco. See the documentation

 
Try it
List All Conversations with the Belco API

Get a list of conversations from Belco. See the documentation

 
Try it
Reopen Conversation with the Belco API

Reopen a conversation specified by ID. See the documentation

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

Connect Logo.dev

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    logo_dev: {
      type: "app",
      app: "logo_dev",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.logo.dev/search`,
      headers: {
        Authorization: `Bearer ${this.logo_dev.$auth.secret_key}`,
      },
      params: {
        "q": `Funko`,
      },
    })
  },
})

Connect Belco

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    belco: {
      type: "app",
      app: "belco",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.belco.io/v1/users`,
      headers: {
        Authorization: `Bearer ${this.belco.$auth.api_token}`,
        "accept": `application/json`,
      },
    })
  },
})

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