Biztera is a powerful API that enables developers to create sophisticated applications for business purposes. With Biztera, developers can access data from a variety of sources, including financial data, customer data, and product data. In addition, developers can use Biztera to create applications that can be used to automate business processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
biztera: {
type: "app",
app: "biztera",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://biztera.com/api/v1/me`,
headers: {
Authorization: `Bearer ${this.biztera.$auth.oauth_access_token}`,
},
})
},
})
Biztera uses OAuth authentication. When you connect your Biztera account, Pipedream will open a popup window where you can sign into Biztera and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Biztera API.
Pipedream requests the following authorization scopes when you connect your account:
read_ar
write_ar
read_invitation
write_invitation
read_profile
write_profile
write_password
read_message
write_message
read_notification
read_org
write_org
read_billing
write_billing
read_friend
read_hook
write_hook
read_project
write_project
read_po
write_po
GET
https://biztera.com/oauth2/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://biztera.com/oauth2/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}