SlackCommandService
A list of all methods in the SlackCommandService service. Click on the method name to view detailed information about that method.
| Methods | Description |
|---|---|
| slack_command | Receives 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
| Name | Type | Required | Description |
|---|---|---|---|
| request_body | dict | ✅ | The 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)