mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-18 23:48:56 +02:00
867 B
867 B
sidebar_position |
---|
2 |
Get workspace list
Gets a list of workspaces where the bot is connected
Function GetWorkspaceList(Val Token, Val Cursor = "") Export
Parameter | CLI option | Type | Destination |
---|---|---|---|
Token | --token | String | Bot token |
Cursor | --cursor | String | Pointer from the previous request, if the result rows > 100 |
Returns: Key-Value Pair - Serialized JSON response from Slack
Response = OPI_Slack.GetWorkspaceList(Token); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
oint slack GetWorkspaceList --token %token% --cursor %cursor%
{
"ok": true,
"teams": [
{
"id": "T06UD92BS3C",
"name": "OpenIntegrations"
}
]
}