Discord

Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.

Integrate the Discord API with the Strava API

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

Create Activity with Strava API on New Message from Discord API
Discord + Strava
 
Try it
Get Activity By ID with Strava API on New Message from Discord API
Discord + Strava
 
Try it
Get Activity List with Strava API on New Message from Discord API
Discord + Strava
 
Try it
Get Stats with Strava API on New Message from Discord API
Discord + Strava
 
Try it
Update Activity with Strava API on New Message from Discord API
Discord + Strava
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
New Activity Created Event from the Strava API

Emit new event when a new activity is created

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Activity Updated Event from the Strava API

Emit new event when an activity is updated

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
Create Activity with the Strava API

Creates a manual activity for an athlete. See the docs

 
Try it
Get Activity By ID with the Strava API

Returns the given activity that is owned by the authenticated athlete. See the docs

 
Try it
Get Activity List with the Strava API

Returns the activities of an athlete for a specific identifier. See the docs

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it
Get Stats with the Strava API

Returns the activity stats of an athlete. Only includes data from activities set to Everyone visibilty. See the docs

 
Try it

Overview of Discord

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Connect Discord

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

Connect Strava

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