Simple cold outreach for remote sales teams. Myphoner is a cold outreach platform that takes the complexity and guesswork out of cold calling.
Go to siteMyphoner provides an API that can be used to create phone applications. This API can be used to create a wide variety of phone applications, including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
myphoner: {
type: "app",
app: "myphoner",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.myphoner.$auth.domain}.myphoner.com/api/v2/lists`,
headers: {
"Authorization": `Token ${this.myphoner.$auth.api_key}`,
"Accept": `application/json`,
"Content-type": `application/json`,
},
})
},
})
Myphoner uses API keys for authentication. When you connect your Myphoner account, Pipedream securely stores the keys so you can easily authenticate to Myphoner APIs in both code and no-code steps.
https://1234.myphoner.com/
, your domain is 1234
.