TRIGGERcmd

TRIGGERcmd is a cloud service that allows you to securely and remotely run commands on your computers. Your commands could install updates, open your garage, run a script, or anything else you decide.

Go to site
Explore
/
Apps
/
TRIGGERcmd

TRIGGERcmd API Integrations

Build and run workflows using the TRIGGERcmd API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

TRIGGERcmd is an innovative cloud-based automation platform with a user-friendly API that allows you to control your digital world from anywhere. With the TRIGGERcmd API, you can access everything from medical equipment to home entertainment systems, and even software development tools. No matter what type of system you're trying to manage, TRIGGERcmd can help you get it done quickly and easily. Here are just a few of the possibilities:

  • Automate backups of your data: Backing up your data has never been easier. The TRIGGERcmd API allows you to quickly set up automated backups of all your important files and documents.
  • Connect to home entertainment systems: If you've ever wanted to control your home entertainment system remotely, then the TRIGGERcmd API is for you. You can quickly connect your system to the cloud and start controlling it from anywhere.
  • Control medical equipment remotely: With the TRIGGERcmd API, you can control your medical equipment from any location to keep patients safe and healthy.
  • Access software development tools: With the TRIGGERcmd API, you can access a variety of software development tools to speed up development and improve product quality.
  • Automate tasks: Automating tedious tasks has never been simpler. The TRIGGERcmd API makes it easy to set up automated tasks that save you time and energy.
  • Control appliances: With the TRIGGERcmd API, you can easily control any appliance in your home remotely, letting you adjust settings and access features on the fly.

You can use the TRIGGERcmd API to take control of your digital world. Whether you're a medical professional, a software developer, or a home entertainment enthusiast, the TRIGGERcmd API can help you get the most out of your systems.

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 { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    triggercmd: {
      type: "app",
      app: "triggercmd",
    }
  },
  async run({steps, $}) {
    const data = {
      "computer": `insert_computer_name_here`,
      "trigger": `insert_trigger_name_here`,
    }
    return await axios($, {
      method: "post",
      url: `https://www.triggercmd.com/oauth/pipedream`,
      headers: {
        Authorization: `Bearer ${this.triggercmd.$auth.oauth_access_token}`,
        "Content-Type": `application/json`,
      },
      data,
    })
  },
})

Choose an API to Connect with TRIGGERcmd API

1
-
12
of
1000+
apps by most popular

Trigger a command with TRIGGERcmd API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + TRIGGERcmd
 
Try it
Trigger a command with TRIGGERcmd API on New Message from Discord API
Discord + TRIGGERcmd
 
Try it
Trigger a command with TRIGGERcmd API on New Message in Channel from Discord Bot API
Discord Bot + TRIGGERcmd
 
Try it
Trigger a command with TRIGGERcmd API on New Submission from Typeform API
Typeform + TRIGGERcmd
 
Try it
Trigger a command with TRIGGERcmd API on Custom Events from Zoom API
Zoom + TRIGGERcmd
 
Try it
Trigger a command with the TRIGGERcmd API

Runs a command on a computer. Refer to the TRIGGERcmd Forum to learn more.

 
Try it

Authentication

TRIGGERcmd uses OAuth authentication. When you connect your TRIGGERcmd account, Pipedream will open a popup window where you can sign into TRIGGERcmd and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any TRIGGERcmd API.

Pipedream requests the following authorization scopes when you connect your account:

OAuth Request Configurations:
  1. authorization
    GEThttps://www.triggercmd.com/oauth/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}
  2. accessToken
    POSThttps://www.triggercmd.com/oauth/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}
  3. refreshToken
    POSThttps://www.triggercmd.com/oauth/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&grant_type=refresh_token&refresh_token={{oauth.refresh_token}}