What do you want to automate

with Belco and Verdict as a Service?

Prompt, edit and deploy AI agents that connect to Belco, Verdict as a Service 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
Request Verdict For A File with Verdict as a Service API on New Conversation from Belco API
Belco + Verdict as a Service
 
Try it
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
Request Verdict For A File with the Verdict as a Service API

Scans a file for malware and other threats. See the docs here

 
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
Integrate the Belco API with the Verdict as a Service API
Setup the Belco API trigger to run a workflow which integrates with the Verdict as a Service API. Pipedream's integration platform allows you to integrate Belco and Verdict as a Service remarkably fast. Free for developers.

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`,
      },
    })
  },
})

Overview of Verdict as a Service

Verdict as a Service (VaaS) API provides a powerful interface for automating the analysis of files and URLs for potential threats. Leveraging the capabilities of Pipedream, users can create sophisticated workflows that trigger actions based on the results of the threat analysis. From email attachments to submitted URLs, VaaS can be integrated into a variety of security and data processing pipelines to ensure safety and compliance.

Connect Verdict as a Service

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import Vaas from "gdata-vaas";

export default defineComponent({
  props: {
    verdict_as_a_service: {
      type: "app",
      app: "verdict_as_a_service",
    }
  },
  async run({steps, $}) {
// create vaas client
    const vaas = await createVaasWithClientCredentialsGrant(
      CLIENT_ID,
      CLIENT_SECRET,
      TOKEN_URL,
      VAAS_URL
    );
    // request verdict for file
    const verdict = await vaas.forFile(response.data);
    if (verdict === "Malicious") {
      console.log("This was malware.");
    }
  },
})

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