Skip to main content

SlackCommandService

A list of all methods in the SlackCommandService service. Click on the method name to view detailed information about that method.

MethodsDescription
slack_commandReceives slash commands initiated from the Abbey Slack App

slack_command

Receives slash commands initiated from the Abbey Slack App

  • HTTP Method: POST
  • Endpoint: /slackcommands

Parameters

NameTypeRequiredDescription
request_bodydictThe request body.

Return Type

OauthListing

Example Usage Code Snippet

from test_sdk import TestSdk
from test_sdk.models import dict

sdk = TestSdk(
access_token="YOUR_ACCESS_TOKEN",
timeout=10000
)

request_body = {}

result = sdk.slack_command.slack_command(request_body=request_body)

print(result)