1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-18 23:48:56 +02:00
OpenIntegrations/docs/en/md/Slack/Management-and-settings/Get-workspace-list.md
2024-06-05 13:35:05 +03:00

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"
 }
 ]
 }