Sign online contracts, purchase orders, forms, you name it. Simple and legal.
Emit new event when a new message is posted in a channel
Emit new event when a new message is received in a chat
Emit new event when a new team is joined by the authenticated user
Create a new channel in Microsoft Teams. See the docs here
Get the list of shift instances for a team. See the documentation
Send a message to a team's channel. See the docs here
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`,
},
})
},
})
The Microsoft Teams API on Pipedream allows you to automate tasks, streamline communication, and integrate with other services to enhance the functionality of Teams as a collaboration hub. With this API, you can send messages to channels, orchestrate complex workflows based on Teams events, and manage Teams' settings programmatically.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_teams: {
type: "app",
app: "microsoft_teams",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_teams.$auth.oauth_access_token}`,
},
})
},
})