Build apps that talk fax. Send and receive fax through our advanced, best-in-class API.
Go to siteUsing the Phaxio API, you can quickly and easily build integrations that allow your users to send payments, verify user information, securely sign documents, and much more.
For example, you can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
phaxio: {
type: "app",
app: "phaxio",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.phaxio.com/v2.1/account/status`,
auth: {
username: `${this.phaxio.$auth.api_key}`,
password: `${this.phaxio.$auth.api_secret}`,
},
})
},
})
Phaxio uses API keys for authentication. When you connect your Phaxio account, Pipedream securely stores the keys so you can easily authenticate to Phaxio APIs in both code and no-code steps.
To get your API key and secret, go to the API Keys page in Phaxio's sidebar.