Slack · Arazzo Workflow

Slack Add a Reminder and Confirm It

Version 1.0.0

Create a reminder for a user and read it back to confirm.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub BotsChatCollaborationMessagingProductivityT1Team CommunicationArazzoWorkflows

Provider

slack

Workflows

add-reminder-for-user
Add a reminder for a user and read it back to confirm.
Adds a reminder for a user at the supplied time and then reads the reminder back by its ID to confirm it was stored.
2 steps inputs: text, time, user outputs: reminder, reminderId
1
addReminder
Add the reminder for the supplied user at the supplied time and capture the new reminder ID.
2
confirmReminder
Read the reminder back by its ID to confirm the stored details.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Slack Add a Reminder and Confirm It
  summary: Create a reminder for a user and read it back to confirm.
  description: >-
    A follow up pattern that schedules a reminder and confirms it was stored.
    The workflow adds a reminder for a user at a given time, captures the new
    reminder ID, and reads the reminder back by ID to confirm the details were
    saved. Every step spells out its request inline so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: addApi
  url: ../openapi/slack-add-api-openapi.yml
  type: openapi
- name: getApi
  url: ../openapi/slack-get-api-openapi.yml
  type: openapi
workflows:
- workflowId: add-reminder-for-user
  summary: Add a reminder for a user and read it back to confirm.
  description: >-
    Adds a reminder for a user at the supplied time and then reads the reminder
    back by its ID to confirm it was stored.
  inputs:
    type: object
    required:
    - text
    - time
    properties:
      text:
        type: string
        description: The content of the reminder.
      time:
        type: string
        description: When the reminder should happen, as a Unix timestamp or natural language.
      user:
        type: string
        description: The user who will receive the reminder; defaults to the caller.
  steps:
  - stepId: addReminder
    description: >-
      Add the reminder for the supplied user at the supplied time and capture
      the new reminder ID.
    operationId: postRemindersAdd
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        text: $inputs.text
        time: $inputs.time
        user: $inputs.user
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.ok == true
      type: jsonpath
    outputs:
      reminderId: $response.body#/reminder/id
  - stepId: confirmReminder
    description: >-
      Read the reminder back by its ID to confirm the stored details.
    operationId: getRemindersInfo
    parameters:
    - name: reminder
      in: query
      value: $steps.addReminder.outputs.reminderId
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.ok == true
      type: jsonpath
    outputs:
      reminder: $response.body#/reminder
  outputs:
    reminderId: $steps.addReminder.outputs.reminderId
    reminder: $steps.confirmReminder.outputs.reminder

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/slack-add-reminder-for-user-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.