with V7 Go and Murf?
Initiates the creation of a new project with a unique project identifier. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
v7_go: {
type: "app",
app: "v7_go",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://go.v7labs.com/api/workspaces/${this.v7_go.$auth.workspace_id}/members`,
headers: {
"X-API-KEY": `${this.v7_go.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
murf: {
type: "app",
app: "murf",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.murf.ai/v1/speech/voices`,
headers: {
"api-key": `${this.murf.$auth.api_key}`,
"token": `${this.murf.$auth.token}`,
},
})
},
})