Open source publishing platform
Emit new event when a new message is posted to one or more channels
Emit new event each time a member is deleted from a site.
Emit new event each time a member is updated.
Emit new event for each new member added to a site.
Emit new event for each new page published on a site.
Send a message to a user, group, private channel or public channel. See the documentation
Configure custom blocks and send to a channel, group, or user. See the documentation.
Send a message as a threaded reply. See postMessage or scheduleMessage docs here
The Ghost.org (Admin API) provides a powerful platform for content management and distribution, allowing developers to programmatically interact with their Ghost site. With this API, you can automate content creation, manage posts, pages, and tags, and dynamically adjust site settings. This enables seamless content workflows, from drafting and scheduling posts to curating featured articles and managing user access. When used with Pipedream, these capabilities expand, enabling integrations with countless other services to create sophisticated, automated content pipelines that can save time and enhance your content strategy.
module.exports = defineComponent({
props: {
ghost_org_admin_api: {
type: "app",
app: "ghost_org_admin_api",
}
},
async run({steps, $}) {
const GhostAdminAPI = require('@tryghost/admin-api');
const api = new GhostAdminAPI({
url: this.ghost_org_admin_api.$auth.admin_api_url,
key: this.ghost_org_admin_api.$auth.admin_api_key,
version: 'v3'
});
return await api.users.browse()
},
})
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}`,
},
})
},
})