Create a new charge for a specific customer and amount through the OPN platform. See the documentation
Create a new appointment in Setmore Appointments. See the documentation
Registers a new customer in the OPN platform. See the documentation
Create a new customer in Setmore Appointments. See the documentation
Update a customer's information and payment details in the OPN system. See the documentation
The OPN API, previously known as Omise, provides a powerful suite of features for handling online payments, from processing transactions to managing payment methods. With Pipedream's integration capabilities, you can automate various aspects of payment operations, link payment events to other services, and streamline financial workflows without the need for extensive coding.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
omise: {
type: "app",
app: "omise",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.omise.co/account`,
auth: {
username: `${this.omise.$auth.secret_key}`,
password: ``,
},
})
},
})
The Setmore API opens doors to automating appointment scheduling and calendar management, allowing you to sync appointments, customer information, and services across different platforms. This seamless integration through Pipedream can trigger workflows from new appointments, update external CRMs with customer data, or prep team communication channels with upcoming schedule details. By harnessing the Setmore API on Pipedream, you're equipping yourself to orchestrate complex operations with simplicity and precision.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
setmoreappointments: {
type: "app",
app: "setmoreappointments",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://developer.setmore.com/api/v1/bookingapi/staffs`,
headers: {
Authorization: `Bearer ${this.setmoreappointments.$auth.oauth_access_token}`,
"Content-Type": `application/json`,
},
})
},
})