Designed by athletes, for athletes, Strava's mobile app and website connect millions of runners and cyclists through the sports they love.
Creates a new comment on a work item in DevRev. See the documentation
Returns the given activity that is owned by the authenticated athlete. See the docs
The Strava API lets you tap into the robust data from Strava's fitness app, which is a playground for athletes worldwide to track their workouts. With Pipedream, you can automate actions based on activities uploaded to Strava, such as running, biking, or swimming. Imagine syncing workout data to spreadsheets for analysis, auto-posting achievements to social media, or integrating with calendar apps for better scheduling. Pipedream's serverless platform makes it a breeze to create workflows that can listen for Strava webhooks, process data, and trigger actions in countless other apps.
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}`,
},
})
},
})
The DevRev API bridges the gap between developers and customers, enabling teams to interact with customer data, handle support issues, and integrate with various development workflows. Within Pipedream, you can wield this API to automate tasks like syncing customer feedback with your issue trackers, updating CRM records, or triggering custom notifications based on customer interactions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
devrev: {
type: "app",
app: "devrev",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.devrev.ai/dev-users.self`,
headers: {
"Authorization": `${this.devrev.$auth.personal_access_token}`,
},
})
},
})