Skip to main content
Version: v2

GetWorkspacesInfoResponse

Response to the workspace information request

workspaces object[]required

Array of WorkspaceInfo objects. Contains only workspaces the bot is a member of

  • Array [
  • workspaceIdstringrequired

    Workspace identifier

    Example: RBhSX3OSNk
    organizationIdstringrequired

    Identifier of the organization the workspace belongs to

    Example: pFs0S4EZwO
    displayNamestringrequired

    Display name of the workspace

    Example: DevTeam
    membersCountinteger<int64>required

    Number of members in the workspace

    Example: 42
    typeWorkspaceType (string)required

    Workspace type

    Possible values: [REGULAR, UBER]

    Example: REGULAR
    createdAtstring<date-time>required

    Date and time the workspace was created

    Example: 2024-01-15T10:00:00Z
  • ]
  • GetWorkspacesInfoResponse
    {
    "workspaces": [
    {
    "workspaceId": "RBhSX3OSNk",
    "organizationId": "pFs0S4EZwO",
    "displayName": "DevTeam",
    "membersCount": 42,
    "type": "REGULAR",
    "createdAt": "2024-01-15T10:00:00Z"
    }
    ]
    }