Trusted by 250,000+ developers from startups to Fortune 500 companies:
This is a pre-built, open source component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.
To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.
Get Reminder on Slack
Description:Return information about a reminder. [See docs here](https://api.slack.com/methods/reminders.info)
Version:0.0.4
Key:slack-get-reminder
import slack from "../../slack.app.mjs";
export default {
key: "slack-get-reminder",
name: "Get Reminder",
description: "Return information about a reminder. [See docs here](https://api.slack.com/methods/reminders.info)",
version: "0.0.4",
type: "action",
props: {
slack,
reminder: {
propDefinition: [
slack,
"reminder",
],
},
},
async run() {
return await this.slack.sdk().reminders.info({
reminder: this.reminder,
});
},
};
This component may be configured based on the props
defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
Label | Prop | Type | Description |
---|
Slack | slack | app | This component uses the Slack app. |
Reminder | reminder | string | Select a value from the drop down menu. |
Slack uses OAuth authentication. When you connect your Slack account, Pipedream will open a popup window where you can sign into Slack and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Slack API.
Pipedream requests the following authorization scopes when you connect your account:
bookmarks:write
calls:read
calls:write
channels:history
channels:read
channels:write
dnd:read
dnd:write
emoji:read
files:read
groups:history
groups:read
groups:write
im:history
im:read
im:write
links:read
links:write
mpim:history
mpim:read
mpim:write
pins:read
pins:write
reactions:read
reactions:write
reminders:read
reminders:write
remote_files:read
remote_files:share
stars:read
stars:write
team:read
usergroups:read
usergroups:write
users:read
users:read.email
users:write
chat:write:bot
chat:write:user
commands
files:write:user
users.profile:write
users.profile:read
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.