Formaloo is a powerful no-code collaboration platform that enables you to build custom business applications, internal tools and customer engagement tools fast & code-free!
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
formaloo: {
type: "app",
app: "formaloo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.formaloo.net/v2.0/profile/`,
headers: {
"Authorization": `JWT ${this.formaloo.$auth.oauth_access_token}`,
"x-api-key": `${this.formaloo.$auth.api_key}`,
},
})
},
})
Create a new customer on the current business. See the documentation
Formaloo uses OAuth authentication. When you connect your Formaloo account, Pipedream will open a popup window where you can sign into Formaloo and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Formaloo API.
Pipedream requests the following authorization scopes when you connect your account:
POST
https://api.formaloo.net/v2.0/oauth2/authorization-token/
Authorization: Basic {{custom_fields.secret_key}}
grant_type=client_credentials
POST
https://api.formaloo.net/v2.0/oauth2/authorization-token/
content-type: application/x-www-form-urlencoded
accept: application/json
Authorization: Basic {{custom_fields.secret_key}}
grant_type=client_credentials
POST
https://api.formaloo.net/v2.0/oauth2/authorization-token/
content-type: application/x-www-form-urlencoded
accept: application/json
Authorization: Basic {{custom_fields.secret_key}}
grant_type=client_credentials