The #1 File Handling Service for Developers.
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
Applies filters such as sharpening, blurring, sepia, monochrome, and more, to an uploaded image. See the documentation
Create a new channel in Microsoft Teams. See the docs here
Resizes an uploaded image to specified width and height. See the documentation
Rotates an uploaded image by a specified degree. See the documentation
The FileStack API allows for robust file handling and manipulation in the cloud. With this API, you can upload files from any URL or device, transform and convert media files, and deliver content with speed and reliability. When leveraged through Pipedream, the FileStack API becomes a potent tool for automating file workflows, integrating with numerous other services, and handling complex file operations without the need for server infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
filestack: {
type: "app",
app: "filestack",
}
},
async run({steps, $}) {
const data = new URLSearchParams({
"url": "https://assets.filestackapi.com/watermark.png",
}).toString();
return await axios($, {
method: "post",
url: `https://www.filestackapi.com/api/store/S3`,
params: {
key: `${this.filestack.$auth.api_key}`,
},
headers: {
"Content-Type": "application/x-www-form-urlencoded",
},
data: data,
})
},
})
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}`,
},
})
},
})