with Discogs and OpenPhone?
Emit new event when there is an order with status 'New Order'. See the documentation
Emits an event when an order status changes to 'Cancelled'. See the documentation
Emit new event when a call recording has finished.
Emit new event when an incoming call is completed, including calls not picked up or voicemails left.
Creates a new listing in the Discogs marketplace. See the documentation
Retrieve the list of phone numbers and users associated with your OpenPhone workspace. See the documentation
Updates the status of an existing order on Discogs. See the documentation
Send a text message from your OpenPhone number to a recipient. See the documentation
The Discogs API offers a gateway to rich data on music artists, labels, and releases. With Pipedream, you can harness this data to create automated workflows that can tap into a vast repository of music information. Whether you're looking to sync your music collection with a personal database, track marketplace activity, or curate personalized music recommendations, the Discogs API paired with Pipedream provides a streamlined platform for integrating and automating these processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
discogs: {
type: "app",
app: "discogs",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.discogs.com/database/search?q=jimi+hendrix&type=artist%22`,
headers: {
"Authorization": `Discogs token=${this.discogs.$auth.personal_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
openphone: {
type: "app",
app: "openphone",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.openphone.com/v1/phone-numbers`,
headers: {
"Authorization": `${this.openphone.$auth.api_key}`,
},
})
},
})