Sign online contracts, purchase orders, forms, you name it. Simple and legal.
Emit new event each time the specified coupon event(s) occur
Emit new event each time the specified customer event(s) occur
Emit new event each time the specified order event(s) occur
Emit new event each time the specified product event(s) occur
The OKSign API unlocks the potential to automate electronic signature workflows, streamlining the process of collecting legally binding signatures on documents. With this API, you can create signature requests, send documents to signees, and track the status of these documents, all programmatically. When leveraged through Pipedream, OKSign can be integrated with a vast array of apps to trigger actions, handle document flow, and ensure seamless end-to-end document management within your business processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
oksign: {
type: "app",
app: "oksign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://oksign.be/services/rest/v1/document/exists`,
headers: {
"x-oksign-authorization": `${this.oksign.$auth.api_key}`,
"x-oksign-docid": `504054-8D73D624-8EC5-EA1C-B932-8ACB7EF25585`,
"accept": `application/json; charset=utf-8`,
},
})
},
})
WooCommerce is a customizable, open-source eCommerce platform built on WordPress. With the WooCommerce API, you can tap into the heart of your eCommerce store to read, create, update, and delete products, orders, and customers. On Pipedream, you can harness this API to automate routine tasks, sync data across platforms, and enhance customer experiences. By connecting WooCommerce to a wide array of apps and services, you can streamline operations, trigger personalized marketing, and analyze your sales data with greater ease.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
woocommerce: {
type: "app",
app: "woocommerce",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.woocommerce.$auth.url}/wp-json/wc/v2/orders`,
auth: {
username: `${this.woocommerce.$auth.key}`,
password: `${this.woocommerce.$auth.secret}`,
},
})
},
})