RunWhen slack API
The slack API from RunWhen — 2 operation(s) for slack.
The slack API from RunWhen — 2 operation(s) for slack.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.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.curl "https://apis.io/api/v1/apis/runwhen-slack-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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.
openapi: 3.2.0
info:
title: papi alert-query-proxy Slack API
description: RunWhen Platform API
version: 2.0.0
servers:
- url: https://papi.beta.runwhen.com
description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: slack
paths:
/api/v3/{workspace_name}/slack:
get:
tags:
- slack
summary: Get Slack integrations for workspace
description: "Get Slack integrations for a workspace.\n\nProxies to the slackbot service to fetch workspace integrations.\n\nArgs:\n workspace_name: The workspace name from path.\n session: Database session.\n current_user: The authenticated user.\n\nReturns:\n Slack workspace integrations from slackbot service."
operationId: get_slack_workspaces_api_v3__workspace_name__slack_get
parameters:
- name: workspace_name
in: path
required: true
schema:
type: string
title: Workspace Name
responses:
'200':
description: Successful Response
content:
application/json:
schema:
type: object
additionalProperties: true
title: Response Get Slack Workspaces Api V3 Workspace Name Slack Get
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
security:
- BearerAuth: []
post:
tags:
- slack
summary: Create Slack integration for workspace
description: "Create a Slack integration for a workspace.\n\nProxies to the slackbot service to create the integration.\n\nArgs:\n workspace_name: The workspace name from path.\n data: Slack integration data.\n session: Database session.\n current_user: The authenticated user.\n\nReturns:\n Created integration from slackbot service."
operationId: create_slack_workspace_api_v3__workspace_name__slack_post
parameters:
- name: workspace_name
in: path
required: true
schema:
type: string
title: Workspace Name
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/SlackWorkspaceCreate'
responses:
'200':
description: Successful Response
content:
application/json:
schema:
type: object
additionalProperties: true
title: Response Create Slack Workspace Api V3 Workspace Name Slack Post
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
security:
- BearerAuth: []
/api/v3/{workspace_name}/slack/{integration_id}:
delete:
tags:
- slack
summary: Delete Slack integration
description: "Delete a Slack integration for a workspace.\n\nArgs:\n workspace_name: The workspace name from path.\n integration_id: The integration ID to delete.\n session: Database session.\n current_user: The authenticated user."
operationId: delete_slack_workspace_api_v3__workspace_name__slack__integration_id__delete
parameters:
- name: workspace_name
in: path
required: true
schema:
type: string
title: Workspace Name
- name: integration_id
in: path
required: true
schema:
type: integer
title: Integration Id
responses:
'204':
description: Successful Response
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
security:
- BearerAuth: []
components:
schemas:
ValidationError:
properties:
loc:
items:
anyOf:
- type: string
- type: integer
type: array
title: Location
msg:
type: string
title: Message
type:
type: string
title: Error Type
input:
title: Input
ctx:
type: object
title: Context
type: object
required:
- loc
- msg
- type
title: ValidationError
HTTPValidationError:
properties:
detail:
items:
$ref: '#/components/schemas/ValidationError'
type: array
title: Detail
type: object
title: HTTPValidationError
SlackWorkspaceCreate:
properties:
slack_payload:
anyOf:
- type: string
- additionalProperties: true
type: object
title: Slack Payload
description: Slack OAuth payload (encrypted string or dict)
workspace:
type: string
title: Workspace
description: Workspace name
type: object
required:
- slack_payload
- workspace
title: SlackWorkspaceCreate
description: Request to create a Slack workspace integration.
securitySchemes:
BearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: JWT access token from /api/v3/token/ or Auth0 login