Managing Universes


The Methods
1. get_universe_workspaces()

2. get_universe_app_types

Last updated
Was this helpful?




Last updated
Was this helpful?
Was this helpful?
workspaces: List[Dict] = s.universe.get_universe_workspaces()workspaces = [
{
"id": "d0361c40-8de9-4dd0-a60c-b0ee12c4d7f4",
"__typename": "Workspaces",
"updatedAt": "2021-03-01T15:46:36.521Z",
"createdAt": "2021-03-01T15:46:36.521Z",
"owner": "333ce8a0-098a-41b5-84a5-6ae67705d1be",
"workspaceUniverseId": "fffff-94df-49ed-b74b-d9fb9246dbb4",
"name": "IKEAM Furniture"
"type": "PERSONAL",
}
]app_types: List[Dict] = s.universe.get_universe_app_types()app_types = [
{
"id": "f861-4794-932b-6395de991111",
"__typename": "AppType",
"updatedAt": "2020-08-18T10:22:23.898Z",
"createdAt": "2020-08-18T10:22:23.898Z",
"appTypeUniverseId": "fffff-94df-49ed-b74b-d9fb9246dbb4",
"normalizedName": "retention-app",
"key": "RETENTION_SUITE"
"name": "Retention App",
},
{
"id": "g972-4794-932b-6395de002222",
"__typename": "AppType",
"updatedAt": "2021-10-03T10:22:23.898Z",
"createdAt": "2021-10-03T10:22:23.898Z",
"appTypeUniverseId": "fffff-94df-49ed-b74b-d9fb9246dbb4",
"normalizedName": "sales-prediction"
"key": "SALES_PREDICTION_SUITE"
"name": "Sales prediction",
},
]