Slack · Arazzo Workflow

Slack Schedule a Message and Verify It

Version 1.0.0

Schedule a future message to a channel and confirm it appears in the queue.

1 workflow 1 source API 1 provider
View Spec View on GitHub BotsChatCollaborationMessagingProductivityT1Team CommunicationArazzoWorkflows

Provider

slack

Workflows

schedule-message-verify
Schedule a future message and verify it is queued.
Schedules a message for future delivery to a channel and then lists the channel's scheduled messages to confirm it was queued.
2 steps inputs: channel, postAt, text outputs: scheduledMessageId, scheduledMessages
1
scheduleMessage
Schedule the supplied message for future delivery to the target channel.
2
verifyScheduled
List the channel's scheduled messages to confirm the newly scheduled message is present in the delivery queue.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Slack Schedule a Message and Verify It
  summary: Schedule a future message to a channel and confirm it appears in the queue.
  description: >-
    A reliable scheduling pattern that queues a message for future delivery and
    verifies the queue accepted it. The workflow schedules the message for a
    given Unix timestamp, then lists the channel's scheduled messages and
    confirms the newly scheduled message is present. 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: chatApi
  url: ../openapi/slack-chat-api-openapi.yml
  type: openapi
workflows:
- workflowId: schedule-message-verify
  summary: Schedule a future message and verify it is queued.
  description: >-
    Schedules a message for future delivery to a channel and then lists the
    channel's scheduled messages to confirm it was queued.
  inputs:
    type: object
    required:
    - channel
    - text
    - postAt
    properties:
      channel:
        type: string
        description: The channel ID to schedule the message into.
      text:
        type: string
        description: The message text to schedule.
      postAt:
        type: integer
        description: The Unix timestamp at which the message should be sent.
  steps:
  - stepId: scheduleMessage
    description: >-
      Schedule the supplied message for future delivery to the target channel.
    operationId: postChatSchedulemessage
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        channel: $inputs.channel
        text: $inputs.text
        post_at: $inputs.postAt
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.ok == true
      type: jsonpath
    outputs:
      scheduledMessageId: $response.body#/scheduled_message_id
      channelId: $response.body#/channel
  - stepId: verifyScheduled
    description: >-
      List the channel's scheduled messages to confirm the newly scheduled
      message is present in the delivery queue.
    operationId: getChatScheduledmessagesList
    parameters:
    - name: channel
      in: query
      value: $steps.scheduleMessage.outputs.channelId
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.ok == true
      type: jsonpath
    outputs:
      scheduledMessages: $response.body#/scheduled_messages
  outputs:
    scheduledMessageId: $steps.scheduleMessage.outputs.scheduledMessageId
    scheduledMessages: $steps.verifyScheduled.outputs.scheduledMessages

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-schedule-message-verify-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.