with Trakt and LimoExpress?
Emit new event when a customer creates a new limo booking. See the documentation
Creates a new client with specified details. See the documentation
Creates a new limo booking with specified details. See the documentation
Remove one of more items from watchlist. See the documentation
The Trakt API provides an interface to track and discover movies and TV shows, allowing you to manage watchlists, get personalized recommendations, and engage with a social community of film and TV enthusiasts. On Pipedream, you can harness this API to create custom workflows that automate your media activities, sync your watch status with other apps, or even analyze your viewing habits.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
trakt: {
type: "app",
app: "trakt",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.trakt.tv/users/me`,
headers: {
Authorization: `Bearer ${this.trakt.$auth.oauth_access_token}`,
"Content-Type": `application/json`,
"trakt-api-version": `2`,
"trakt-api-key": `${this.trakt.$auth.oauth_client_id}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
limoexpress: {
type: "app",
app: "limoexpress",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.limoexpress.me/api/integration/users`,
headers: {
Authorization: `Bearer ${this.limoexpress.$auth.api_key}`,
"accept": `*/*`,
},
params: {
page: `1`,
per_page: `10`,
},
})
},
})