Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Emit new event when a new message is posted to one or more channels
Emit new event when a contact or member in WildApricot is updated
Emit new event when a registration to an existing event in WildApricot is newly created.
Emit new event each time a new payment is received in WildApricot
Adds or updates a contact or member details in the user's WildApricot database. See the documentation
Send a message to a user, group, private channel or public channel. See the documentation
Searches event registrations using a contact email. If a match is found, the registration details are updated. If not, a new registration is added to the event. See the documentation
Configure custom blocks and send to a channel, group, or user. See the documentation.
Removes an event registration from the user's WildApricot database. See the documentation
The Pipedream Slack app enables you to build event-driven workflows that interact with the Slack API. Once you authorize the Pipedream app's access to your workspace, you can use Pipedream workflows to perform common Slack actions or write your own code against the Slack API.
The Pipedream Slack app is not a typical app. You don't interact with it directly as a bot, and it doesn't add custom functionality to your workspace out of the box. It makes it easier to automate anything you'd typically use the Slack API for, using Pipedream workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
slack: {
type: "app",
app: "slack",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://slack.com/api/users.profile.get`,
headers: {
Authorization: `Bearer ${this.slack.$auth.oauth_access_token}`,
},
})
},
})
The WildApricot API opens up a world of possibilities for managing your membership-driven organization efficiently by automating tasks and integrating with other services. With this API on Pipedream, you can craft workflows that manipulate member data, automate event creation and management, handle financial operations such as invoicing, and engage with members through tailored communication. Pipedream's serverless platform simplifies the process of setting up these automations with pre-built components and easy-to-use triggers and actions for the WildApricot API.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wildapricot: {
type: "app",
app: "wildapricot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.wildapricot.org/v2.2/accounts`,
headers: {
Authorization: `Bearer ${this.wildapricot.$auth.oauth_access_token}`,
},
})
},
})