AppStudio Routes

token_auth = dmda.DomoTokenAuth(
    domo_instance=os.environ['DOMO_INSTANCE'],
    domo_access_token=os.environ["DOMO_ACCESS_TOKEN"],
)

Route Errors


source

AppStudioSharing_Error

 AppStudioSharing_Error (status, domo_instance, appstudio_id, response,
                         function_name=None, parent_class=None)

base exception


source

AppStudioAdminSummary_Error

 AppStudioAdminSummary_Error (status, domo_instance, appstudio_id,
                              response, function_name=None,
                              parent_class=None)

base exception


source

AppStudioAccessRetrieval_Error

 AppStudioAccessRetrieval_Error (status, domo_instance, appstudio_id,
                                 response, function_name=None,
                                 parent_class=None)

base exception


source

AppStudioRetrieval_byId_Error

 AppStudioRetrieval_byId_Error (status, domo_instance, appstudio_id,
                                response, function_name=None,
                                parent_class=None)

base exception

sample implementation of AppStudioRetrieval_byId_Error

try:
    raise AppStudioRetrieval_byId_Error(
        status=404,
        appstudio_id=123,
        function_name="test",
        parent_class="Foo",
        domo_instance="test_domo",
        response="Bad Request",
    )
except AppStudioRetrieval_byId_Error as e:
    print(e)
🛑  AppStudioRetrieval_byId_Error 🛑 - function: Foo.test || status 404 || failed to retrieve appstudio_id: 123 at test_domo

source

get_apstudio_by_id

 get_apstudio_by_id (auth:domolibrary.client.DomoAuth.DomoAuth,
                     appstudio_id:str, debug_api:bool=False,
                     session:httpx.AsyncClient=None,
                     debug_num_stacks_to_drop:int=1,
                     parent_class:str=None)

retrieves a page or throws an error

Type Default Details
auth DomoAuth
appstudio_id str
debug_api bool False
session AsyncClient None
debug_num_stacks_to_drop int 1 for traceback_details. use 1 for route functions, 2 for class method
parent_class str None pass in self.__class__.__name__ into function
Returns ResponseGetData

sample get_apstudio_by_id

appstudio_id = 1196847240

(await get_apstudio_by_id(appstudio_id=appstudio_id, auth=token_auth)).response
{'dataAppId': 1196847240,
 'title': 'Demo App',
 'description': None,
 'iconDataFileId': 5712,
 'navIconDataFileId': None,
 'landingViewId': 381081924,
 'enabled': True,
 'locked': False,
 'lastUpdated': 1727129743000,
 'owners': [{'id': 1786804487, 'type': 'USER', 'displayName': 'Khushboo'},
  {'id': 694942127, 'type': 'USER', 'displayName': 'Chris Wright'}],
 'isOwner': False,
 'isFavorite': False,
 'canEdit': True,
 'showNavigation': True,
 'showTitle': True,
 'showLogo': False,
 'navOrientation': 'TOP',
 'views': [{'viewId': 381081924,
   'title': 'Overview',
   'parentViewId': 0,
   'viewOrder': 1,
   'visible': True,
   'view': None,
   'layout': None,
   'children': []},
  {'viewId': 1530454703,
   'title': 'Business Review',
   'parentViewId': 0,
   'viewOrder': 2,
   'visible': True,
   'view': None,
   'layout': None,
   'children': []},
  {'viewId': 2074587130,
   'title': 'Feedback',
   'parentViewId': 0,
   'viewOrder': 3,
   'visible': True,
   'view': None,
   'layout': None,
   'children': []},
  {'viewId': 161050215,
   'title': 'Page Drill',
   'parentViewId': 0,
   'viewOrder': 5,
   'visible': True,
   'view': None,
   'layout': None,
   'children': []},
  {'viewId': 759073442,
   'title': 'Growth Metrics',
   'parentViewId': 0,
   'viewOrder': 6,
   'visible': True,
   'view': None,
   'layout': None,
   'children': []},
  {'viewId': 582861221,
   'title': 'Drill view',
   'parentViewId': 0,
   'viewOrder': 7,
   'visible': True,
   'view': None,
   'layout': None,
   'children': []}],
 'userAccess': {'users': [{'id': 1216550715,
    'displayName': '8:26 - go to sleep',
    'avatarKey': None,
    'role': 'Privileged'},
   {'id': 128618865,
    'displayName': '9:02 - no really go to bed',
    'avatarKey': None,
    'role': 'Privileged'},
   {'id': 2142004350,
    'displayName': 'ANDREW DOSS',
    'avatarKey': 'e1ea7240-a049-444c-af55-67ccfa0bd927',
    'role': 'Privileged'},
   {'id': 1447682110,
    'displayName': 'Aaron Brown',
    'avatarKey': None,
    'role': 'Privileged'},
   {'id': 1628021317,
    'displayName': 'Aaron Dean',
    'avatarKey': None,
    'role': None}],
  'totalCount': 1055},
 'theme': {'name': 'Midnight',
  'chartColorPalette': {'id': 'Midnight', 'type': 'APP_STUDIO'},
  'cards': [{'id': 'ca1',
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'titleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'descriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'chartFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'backgroundColor': {'value': 'c18',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 12,
    'borderWidth': 0,
    'borderColor': None,
    'dropShadow': None,
    'dropShadowColor': None,
    'elementSpacing': {'isCustom': None,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 8}},
    'padding': {'left': 12, 'right': 12, 'top': 12, 'bottom': 12},
    'timeFrameFont': {'value': 'f6', 'type': 'FONT_REFERENCE'},
    'summaryNumberFont': {'value': 'f3', 'type': 'FONT_REFERENCE'},
    'summaryNumberLabelFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'accentColor': {'value': 'c56',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}},
   {'id': 'ca2',
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'titleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'descriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'chartFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'backgroundColor': {'value': 'c19',
     'opacity': '70',
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 12,
    'borderWidth': 2,
    'borderColor': {'value': 'c16',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'dropShadow': None,
    'dropShadowColor': None,
    'elementSpacing': {'isCustom': None,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 8}},
    'padding': {'left': 12, 'right': 12, 'top': 12, 'bottom': 12},
    'timeFrameFont': {'value': 'f6', 'type': 'FONT_REFERENCE'},
    'summaryNumberFont': {'value': 'f3', 'type': 'FONT_REFERENCE'},
    'summaryNumberLabelFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'accentColor': {'value': 'c56',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}},
   {'id': 'ca3',
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'titleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'descriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'chartFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'backgroundColor': {'value': 'c16',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 23,
    'borderWidth': 0,
    'borderColor': None,
    'dropShadow': None,
    'dropShadowColor': None,
    'elementSpacing': {'isCustom': True,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 0}},
    'padding': {'left': 10, 'right': 10, 'top': 10, 'bottom': 10},
    'timeFrameFont': {'value': 'f6', 'type': 'FONT_REFERENCE'},
    'summaryNumberFont': {'value': 'f3', 'type': 'FONT_REFERENCE'},
    'summaryNumberLabelFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'accentColor': {'value': 'c56',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}},
   {'id': 'ca4',
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'titleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'descriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'chartFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'backgroundColor': {'value': 'c56',
     'opacity': '00',
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 12,
    'borderWidth': 0,
    'borderColor': None,
    'dropShadow': None,
    'dropShadowColor': None,
    'elementSpacing': {'isCustom': False,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 4}},
    'padding': {'left': 2, 'right': 2, 'top': 2, 'bottom': 2},
    'timeFrameFont': {'value': 'f6', 'type': 'FONT_REFERENCE'},
    'summaryNumberFont': {'value': 'f3', 'type': 'FONT_REFERENCE'},
    'summaryNumberLabelFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'accentColor': {'value': 'c15',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}},
   {'id': 'ca5',
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'titleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'descriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'chartFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'backgroundColor': {'value': 'c38',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 12,
    'borderWidth': 2,
    'borderColor': None,
    'dropShadow': None,
    'dropShadowColor': None,
    'elementSpacing': {'isCustom': None,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 8}},
    'padding': {'left': 12, 'right': 12, 'top': 12, 'bottom': 12},
    'timeFrameFont': {'value': 'f6', 'type': 'FONT_REFERENCE'},
    'summaryNumberFont': {'value': 'f3', 'type': 'FONT_REFERENCE'},
    'summaryNumberLabelFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'accentColor': {'value': 'c56',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}},
   {'id': 'ca6',
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'titleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'descriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'chartFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'backgroundColor': {'value': 'c31',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 12,
    'borderWidth': 2,
    'borderColor': None,
    'dropShadow': None,
    'dropShadowColor': None,
    'elementSpacing': {'isCustom': None,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 8}},
    'padding': {'left': 5, 'right': 5, 'top': 5, 'bottom': 5},
    'timeFrameFont': {'value': 'f6', 'type': 'FONT_REFERENCE'},
    'summaryNumberFont': {'value': 'f3', 'type': 'FONT_REFERENCE'},
    'summaryNumberLabelFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'accentColor': {'value': 'c56',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}},
   {'id': 'ca7',
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'titleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'descriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'chartFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'backgroundColor': {'value': 'c3',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 12,
    'borderWidth': 0,
    'borderColor': None,
    'dropShadow': None,
    'dropShadowColor': None,
    'elementSpacing': {'isCustom': None,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 8}},
    'padding': {'left': 12, 'right': 12, 'top': 12, 'bottom': 12},
    'timeFrameFont': {'value': 'f6', 'type': 'FONT_REFERENCE'},
    'summaryNumberFont': {'value': 'f3', 'type': 'FONT_REFERENCE'},
    'summaryNumberLabelFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'accentColor': {'value': 'c56',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}},
   {'id': 'ca8',
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'titleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'descriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'chartFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'backgroundColor': {'value': 'c11',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 12,
    'borderWidth': 0,
    'borderColor': None,
    'dropShadow': None,
    'dropShadowColor': None,
    'elementSpacing': {'isCustom': None,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 8}},
    'padding': {'left': 12, 'right': 12, 'top': 12, 'bottom': 12},
    'timeFrameFont': {'value': 'f6', 'type': 'FONT_REFERENCE'},
    'summaryNumberFont': {'value': 'f3', 'type': 'FONT_REFERENCE'},
    'summaryNumberLabelFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'accentColor': {'value': 'c18',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}}],
  'tables': [{'id': 't1',
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'titleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'descriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'chartFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'backgroundColor': {'value': 'c18',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 12,
    'borderWidth': 0,
    'borderColor': None,
    'dropShadow': 'NONE',
    'dropShadowColor': None,
    'elementSpacing': {'isCustom': True,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 2}},
    'padding': {'left': 2, 'right': 2, 'top': 2, 'bottom': 2},
    'timeFrameFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'summaryNumberFont': {'value': 'f3', 'type': 'FONT_REFERENCE'},
    'summaryNumberLabelFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'accentColor': None,
    'tableBorderType': 'BELOW_HEADER',
    'tableBorderWeight': 1,
    'tableBorderColor': {'value': 'c10',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'rowHeight': 'COMFORTABLE',
    'rowColor': {'value': 'c18', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'alternatingRowColorEnabled': True,
    'alternatingRowColor': {'value': 'c17',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'headerFont': {'value': 'f2', 'type': 'FONT_REFERENCE'},
    'headerFontColor': {'value': 'c22',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'headerBackgroundColor': None,
    'totalRowFont': {'value': 'f5', 'type': 'FONT_REFERENCE'},
    'totalRowFontColor': {'value': 'c60',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'totalRowBackgroundColor': {'value': 'c9',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'subtotalRowFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'subtotalRowFontColor': {'value': 'c60',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'subtotalRowBackgroundColor': {'value': 'c16',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'urlFontColor': {'value': 'c29',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}},
   {'id': 't2',
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'titleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'descriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'chartFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'backgroundColor': {'value': 'c19',
     'opacity': '70',
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 12,
    'borderWidth': 2,
    'borderColor': {'value': 'c16',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'dropShadow': 'NONE',
    'dropShadowColor': None,
    'elementSpacing': {'isCustom': None,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 8}},
    'padding': {'left': 12, 'right': 12, 'top': 12, 'bottom': 12},
    'timeFrameFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'summaryNumberFont': {'value': 'f3', 'type': 'FONT_REFERENCE'},
    'summaryNumberLabelFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'accentColor': None,
    'tableBorderType': 'NONE',
    'tableBorderWeight': 0,
    'tableBorderColor': None,
    'rowHeight': 'DEFAULT',
    'rowColor': {'value': 'c43', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'alternatingRowColorEnabled': True,
    'alternatingRowColor': {'value': 'c17',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'headerFont': None,
    'headerFontColor': {'value': 'c60',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'headerBackgroundColor': None,
    'totalRowFont': {'value': 'f5', 'type': 'FONT_REFERENCE'},
    'totalRowFontColor': {'value': 'c60',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'totalRowBackgroundColor': {'value': 'c9',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'subtotalRowFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'subtotalRowFontColor': {'value': 'c60',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'subtotalRowBackgroundColor': {'value': 'c16',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'urlFontColor': {'value': 'c29',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}},
   {'id': 't3',
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'titleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'descriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'chartFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'backgroundColor': {'value': 'c56',
     'opacity': '00',
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 12,
    'borderWidth': 0,
    'borderColor': None,
    'dropShadow': 'NONE',
    'dropShadowColor': None,
    'elementSpacing': {'isCustom': None,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 8}},
    'padding': {'left': 12, 'right': 12, 'top': 12, 'bottom': 12},
    'timeFrameFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'summaryNumberFont': {'value': 'f3', 'type': 'FONT_REFERENCE'},
    'summaryNumberLabelFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'accentColor': None,
    'tableBorderType': 'BELOW_HEADER',
    'tableBorderWeight': 1,
    'tableBorderColor': {'value': 'c43',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'rowHeight': 'COMFORTABLE',
    'rowColor': {'value': 'c56', 'opacity': '00', 'type': 'COLOR_REFERENCE'},
    'alternatingRowColorEnabled': False,
    'alternatingRowColor': {'value': 'c17',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'headerFont': None,
    'headerFontColor': {'value': 'c60',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'headerBackgroundColor': None,
    'totalRowFont': {'value': 'f5', 'type': 'FONT_REFERENCE'},
    'totalRowFontColor': {'value': 'c60',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'totalRowBackgroundColor': {'value': 'c8',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'subtotalRowFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'subtotalRowFontColor': {'value': 'c60',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'subtotalRowBackgroundColor': {'value': 'c16',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'urlFontColor': {'value': 'c29',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}}],
  'mappings': {'button': 'b1',
   'singleValue': 'ca3',
   'chart': 'ca2',
   'table': 't1',
   'control': 'ca1',
   'form': 'fo1',
   'image': 'ca4',
   'document': 'ca4',
   'brick': 'ca4',
   'notebook': 'no1',
   'header': 'h1',
   'tab': 'ta1',
   'component': None,
   'pill': None},
  'colors': [{'id': 'c1',
    'value': {'value': '#101828', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY', 'TINTED_GRAY']},
   {'id': 'c2',
    'value': {'value': '#344054', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY', 'TINTED_GRAY']},
   {'id': 'c3',
    'value': {'value': '#667085', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY', 'TINTED_GRAY']},
   {'id': 'c4',
    'value': {'value': '#D0D5DD', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY', 'TINTED_GRAY']},
   {'id': 'c5',
    'value': {'value': '#E4E7EC', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY', 'TINTED_GRAY']},
   {'id': 'c6',
    'value': {'value': '#F2F4F7', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY', 'TINTED_GRAY']},
   {'id': 'c7',
    'value': {'value': '#FCFCFD', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY', 'TINTED_GRAY']},
   {'id': 'c8',
    'value': {'value': '#4956B5', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY', 'ORDER_SOURCE']},
   {'id': 'c9',
    'value': {'value': '#606CBF', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY']},
   {'id': 'c10',
    'value': {'value': '#7782C9', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY']},
   {'id': 'c11',
    'value': {'value': '#8E98D3', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY']},
   {'id': 'c12',
    'value': {'value': '#A5AEDD', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY']},
   {'id': 'c13',
    'value': {'value': '#BCC4E7', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY']},
   {'id': 'c14',
    'value': {'value': '#D3DAF1', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY']},
   {'id': 'c15',
    'value': {'value': '#3D4B9C', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY']},
   {'id': 'c16',
    'value': {'value': '#344085', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY']},
   {'id': 'c17',
    'value': {'value': '#2B356E', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY']},
   {'id': 'c18',
    'value': {'value': '#222A57', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY']},
   {'id': 'c19',
    'value': {'value': '#191F40', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY']},
   {'id': 'c20',
    'value': {'value': '#101429', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY']},
   {'id': 'c21',
    'value': {'value': '#070912', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'PRIMARY']},
   {'id': 'c22',
    'value': {'value': '#4EDCC4', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'SECONDARY', 'ORDER_SOURCE']},
   {'id': 'c23',
    'value': {'value': '#48D1BA', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'SECONDARY']},
   {'id': 'c24',
    'value': {'value': '#3CBBA5', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'SECONDARY']},
   {'id': 'c25',
    'value': {'value': '#30A590', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'SECONDARY']},
   {'id': 'c26',
    'value': {'value': '#248E7B', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'SECONDARY']},
   {'id': 'c27',
    'value': {'value': '#187866', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'SECONDARY']},
   {'id': 'c28',
    'value': {'value': '#0C6251', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'SECONDARY']},
   {'id': 'c29',
    'value': {'value': '#8BCEFF', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'TERTIARY', 'ORDER_SOURCE']},
   {'id': 'c30',
    'value': {'value': '#80C3F4', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'TERTIARY']},
   {'id': 'c31',
    'value': {'value': '#6BAEDD', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'TERTIARY']},
   {'id': 'c32',
    'value': {'value': '#5699C7', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'TERTIARY']},
   {'id': 'c33',
    'value': {'value': '#4084B0', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'TERTIARY']},
   {'id': 'c34',
    'value': {'value': '#2B6E99', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'TERTIARY']},
   {'id': 'c35',
    'value': {'value': '#155983', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'TERTIARY']},
   {'id': 'c36',
    'value': {'value': '#D6BAFF', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'QUATERNARY', 'ORDER_SOURCE']},
   {'id': 'c37',
    'value': {'value': '#CBB0F4', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'QUATERNARY']},
   {'id': 'c38',
    'value': {'value': '#B59BDD', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'QUATERNARY']},
   {'id': 'c39',
    'value': {'value': '#9F86C6', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'QUATERNARY']},
   {'id': 'c40',
    'value': {'value': '#8971B0', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'QUATERNARY']},
   {'id': 'c41',
    'value': {'value': '#735C99', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'QUATERNARY']},
   {'id': 'c42',
    'value': {'value': '#5D4783', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'QUATERNARY']},
   {'id': 'c43',
    'value': {'value': '#000000', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'GRAYSCALE']},
   {'id': 'c44',
    'value': {'value': '#141414', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'GRAYSCALE']},
   {'id': 'c45',
    'value': {'value': '#272727', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'GRAYSCALE']},
   {'id': 'c46',
    'value': {'value': '#3B3B3B', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'GRAYSCALE']},
   {'id': 'c47',
    'value': {'value': '#4E4E4E', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'GRAYSCALE']},
   {'id': 'c48',
    'value': {'value': '#626262', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'GRAYSCALE']},
   {'id': 'c49',
    'value': {'value': '#767676', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'GRAYSCALE']},
   {'id': 'c50',
    'value': {'value': '#898989', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'GRAYSCALE']},
   {'id': 'c51',
    'value': {'value': '#9D9D9D', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'GRAYSCALE']},
   {'id': 'c52',
    'value': {'value': '#B1B1B1', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'GRAYSCALE']},
   {'id': 'c53',
    'value': {'value': '#C4C4C4', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'GRAYSCALE']},
   {'id': 'c54',
    'value': {'value': '#D8D8D8', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'GRAYSCALE']},
   {'id': 'c55',
    'value': {'value': '#EBEBEB', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'GRAYSCALE']},
   {'id': 'c56',
    'value': {'value': '#FFFFFF', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'GRAYSCALE']},
   {'id': 'c57',
    'value': {'value': '#FFFFFF', 'type': 'RGB_HEX'},
    'tags': ['THEME', 'GRAYSCALE']},
   {'id': 'c58',
    'value': {'value': '#000000', 'type': 'RGB_HEX'},
    'tags': ['FONT']},
   {'id': 'c59',
    'value': {'value': '#FFFFFF', 'type': 'RGB_HEX'},
    'tags': ['FONT']},
   {'id': 'c60',
    'value': {'dark': {'value': 'c58',
      'opacity': None,
      'type': 'COLOR_REFERENCE'},
     'light': {'value': 'c59', 'opacity': None, 'type': 'COLOR_REFERENCE'},
     'type': 'AUTOMATIC_COLOR'},
    'tags': ['FONT']}],
  'fonts': [{'id': 'f1',
    'family': 'Sans',
    'style': 'Regular',
    'weight': 700,
    'size': 40},
   {'id': 'f2',
    'family': 'Sans',
    'style': 'Regular',
    'weight': 600,
    'size': 32},
   {'id': 'f3',
    'family': 'Sans',
    'style': 'Regular',
    'weight': 600,
    'size': 24},
   {'id': 'f4',
    'family': 'Sans',
    'style': 'Regular',
    'weight': 700,
    'size': 18},
   {'id': 'f5',
    'family': 'Sans',
    'style': 'Regular',
    'weight': 600,
    'size': 14},
   {'id': 'f6',
    'family': 'Sans',
    'style': 'Regular',
    'weight': 400,
    'size': 14},
   {'id': 'f7',
    'family': 'Sans',
    'style': 'Regular',
    'weight': 400,
    'size': 12},
   {'id': 'f8',
    'family': 'Sans',
    'style': 'Regular',
    'weight': 600,
    'size': 14}],
  'buttons': [{'id': 'b1',
    'font': {'value': 'f8', 'type': 'FONT_REFERENCE'},
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'backgroundColor': {'value': 'c22',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 24,
    'borderWidth': 0,
    'borderColor': None,
    'contentAlignment': 'CENTER',
    'hoverColor': {'value': 'c43', 'opacity': '12', 'type': 'COLOR_REFERENCE'},
    'dropShadow': 'NONE',
    'dropShadowColor': None},
   {'id': 'b2',
    'font': {'value': 'f8', 'type': 'FONT_REFERENCE'},
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'backgroundColor': {'value': 'c29',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 24,
    'borderWidth': 0,
    'borderColor': None,
    'contentAlignment': 'CENTER',
    'hoverColor': {'value': 'c43', 'opacity': '12', 'type': 'COLOR_REFERENCE'},
    'dropShadow': 'NONE',
    'dropShadowColor': None},
   {'id': 'b3',
    'font': {'value': 'f8', 'type': 'FONT_REFERENCE'},
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'backgroundColor': {'value': 'c56',
     'opacity': '00',
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 24,
    'borderWidth': 2,
    'borderColor': {'value': 'c36',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'contentAlignment': 'CENTER',
    'hoverColor': {'value': 'c56', 'opacity': '12', 'type': 'COLOR_REFERENCE'},
    'dropShadow': 'NONE',
    'dropShadowColor': None},
   {'id': 'b4',
    'font': {'value': 'f8', 'type': 'FONT_REFERENCE'},
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'backgroundColor': {'value': 'c8',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 24,
    'borderWidth': 0,
    'borderColor': None,
    'contentAlignment': 'CENTER',
    'hoverColor': {'value': 'c43', 'opacity': '12', 'type': 'COLOR_REFERENCE'},
    'dropShadow': 'NONE',
    'dropShadowColor': None},
   {'id': 'b5',
    'font': {'value': 'f8', 'type': 'FONT_REFERENCE'},
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'backgroundColor': {'value': 'c56',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 24,
    'borderWidth': 0,
    'borderColor': None,
    'contentAlignment': 'CENTER',
    'hoverColor': {'value': 'c43', 'opacity': '12', 'type': 'COLOR_REFERENCE'},
    'dropShadow': 'NONE',
    'dropShadowColor': None}],
  'navigation': [{'id': 'n0',
    'background': {'value': 'c15', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'activeBackground': {'value': 'c17',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'hoverBackground': {'value': 'c16',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'showShadow': False,
    'titleFontColor': {'value': 'c60',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'linkFontColor': {'value': 'c60',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'titleFontStyle': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'linkFontStyle': {'value': 'f8', 'type': 'FONT_REFERENCE'},
    'buttonStyle': None,
    'buttonFit': None,
    'buttonAlignment': None}],
  'images': [{'id': 'i1', 'dataFileId': 5726}],
  'pages': [{'id': 'p0',
    'background': {'value': 'c20', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'isDynamic': True,
    'density': {'compact': 4, 'standard': 4}}],
  'headers': [{'id': 'h1',
    'font': {'value': 'f2', 'type': 'FONT_REFERENCE'},
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'}},
   {'id': 'h2',
    'font': {'value': 'f3', 'type': 'FONT_REFERENCE'},
    'fontColor': {'value': 'c60',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}}],
  'notebooks': [{'id': 'no1',
    'backgroundColor': {'value': 'c56',
     'opacity': '00',
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 12,
    'borderWidth': 0,
    'borderColor': None,
    'dropShadow': 'NONE',
    'dropShadowColor': None,
    'padding': {'left': 12, 'right': 12, 'top': 12, 'bottom': 12},
    'elementSpacing': {'isCustom': None,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 8}},
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'titleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'descriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'contentHeaderFont': {'value': 'f2', 'type': 'FONT_REFERENCE'},
    'contentTitleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'contentSubtitleFont': {'value': 'f5', 'type': 'FONT_REFERENCE'},
    'contentTextFont': {'value': 'f6', 'type': 'FONT_REFERENCE'},
    'smartTextFontColor': {'value': 'c22',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'urlFontColor': {'value': 'c29',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}},
   {'id': 'no2',
    'backgroundColor': {'value': 'c56',
     'opacity': '00',
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 12,
    'borderWidth': 0,
    'borderColor': None,
    'dropShadow': 'NONE',
    'dropShadowColor': None,
    'padding': {'left': 12, 'right': 12, 'top': 12, 'bottom': 12},
    'elementSpacing': {'isCustom': None,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 8}},
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'titleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'descriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'contentHeaderFont': {'value': 'f2', 'type': 'FONT_REFERENCE'},
    'contentTitleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'contentSubtitleFont': {'value': 'f5', 'type': 'FONT_REFERENCE'},
    'contentTextFont': {'value': 'f6', 'type': 'FONT_REFERENCE'},
    'smartTextFontColor': {'value': 'c29',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'urlFontColor': {'value': 'c29',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}},
   {'id': 'no3',
    'backgroundColor': {'value': 'c18',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 12,
    'borderWidth': 0,
    'borderColor': None,
    'dropShadow': 'NONE',
    'dropShadowColor': None,
    'padding': {'left': 12, 'right': 12, 'top': 12, 'bottom': 12},
    'elementSpacing': {'isCustom': None,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 8}},
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'titleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'descriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'contentHeaderFont': {'value': 'f2', 'type': 'FONT_REFERENCE'},
    'contentTitleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'contentSubtitleFont': {'value': 'f5', 'type': 'FONT_REFERENCE'},
    'contentTextFont': {'value': 'f6', 'type': 'FONT_REFERENCE'},
    'smartTextFontColor': {'value': 'c29',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'urlFontColor': {'value': 'c29',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}}],
  'forms': [{'id': 'fo1',
    'backgroundColor': {'value': 'c54',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 12,
    'borderWidth': 0,
    'borderColor': None,
    'dropShadow': 'NONE',
    'dropShadowColor': None,
    'padding': {'left': 12, 'right': 12, 'top': 12, 'bottom': 12},
    'elementSpacing': {'isCustom': None,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 8}},
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'formTitleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'formSectionNumberFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'formSectionHeaderFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'formSectionDescriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'formInputTextFont': {'value': 'f6', 'type': 'FONT_REFERENCE'},
    'formPrimaryButton': {'value': 'b1', 'type': 'BUTTON_REFERENCE'},
    'formSecondaryButton': {'value': 'b3', 'type': 'BUTTON_REFERENCE'},
    'formControlColor': {'value': 'c22',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}},
   {'id': 'fo2',
    'backgroundColor': {'value': 'c18',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 12,
    'borderWidth': 2,
    'borderColor': {'value': 'c16',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'dropShadow': 'NONE',
    'dropShadowColor': None,
    'padding': {'left': 12, 'right': 12, 'top': 12, 'bottom': 12},
    'elementSpacing': {'isCustom': None,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 8}},
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'formTitleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'formSectionNumberFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'formSectionHeaderFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'formSectionDescriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'formInputTextFont': {'value': 'f6', 'type': 'FONT_REFERENCE'},
    'formPrimaryButton': {'value': 'b2', 'type': 'BUTTON_REFERENCE'},
    'formSecondaryButton': {'value': 'b3', 'type': 'BUTTON_REFERENCE'},
    'formControlColor': {'value': 'c29',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}},
   {'id': 'fo3',
    'backgroundColor': {'value': 'c20',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderRadius': 12,
    'borderWidth': 0,
    'borderColor': None,
    'dropShadow': 'NONE',
    'dropShadowColor': None,
    'padding': {'left': 12, 'right': 12, 'top': 12, 'bottom': 12},
    'elementSpacing': {'isCustom': None,
     'title': None,
     'summaryNumber': None,
     'timeframeLabel': None,
     'description': None,
     'header': {'bottomMargin': 8}},
    'fontColor': {'value': 'c60', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'formTitleFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'formSectionNumberFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'formSectionHeaderFont': {'value': 'f4', 'type': 'FONT_REFERENCE'},
    'formSectionDescriptionFont': {'value': 'f7', 'type': 'FONT_REFERENCE'},
    'formInputTextFont': {'value': 'f6', 'type': 'FONT_REFERENCE'},
    'formPrimaryButton': {'value': 'b1', 'type': 'BUTTON_REFERENCE'},
    'formSecondaryButton': {'value': 'b3', 'type': 'BUTTON_REFERENCE'},
    'formControlColor': {'value': 'c22',
     'opacity': None,
     'type': 'COLOR_REFERENCE'}}],
  'tabs': [{'id': 'ta1',
    'background': {'value': 'c20', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'tabBarBackground': {'value': 'c20',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderColor': {'value': 'c56',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderWeight': 0,
    'borderRadius': 12,
    'activeColor': {'value': 'c8', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'hoverColor': {'value': 'c17', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'linkFontColor': {'value': 'c60',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'linkFontStyle': {'value': 'f8', 'type': 'FONT_REFERENCE'},
    'tabVariant': 'UNDERLINE',
    'tabFit': 'FILL',
    'contentAlignment': 'LEFT'},
   {'id': 'ta2',
    'background': {'value': 'c16', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'tabBarBackground': {'value': 'c16',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderColor': {'value': 'c56',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'borderWeight': 2,
    'borderRadius': 12,
    'activeColor': {'value': 'c12',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'hoverColor': {'value': 'c12', 'opacity': None, 'type': 'COLOR_REFERENCE'},
    'linkFontColor': {'value': 'c60',
     'opacity': None,
     'type': 'COLOR_REFERENCE'},
    'linkFontStyle': {'value': 'f8', 'type': 'FONT_REFERENCE'},
    'tabVariant': 'FOLDER',
    'tabFit': 'HUG',
    'contentAlignment': 'LEFT'}],
  'components': None,
  'pills': None,
  'app': {'backgroundColor': {'value': 'c20',
    'opacity': None,
    'type': 'COLOR_REFERENCE'},
   'resizeMode': 'AUTO'}},
 'themeMetrics': [{'dataAppId': 1196847240,
   'viewId': 381081924,
   'styleCount': {'b4': 2, 'ca4': 1},
   'overriddenStyles': [{'type': 'BUTTON',
     'entityId': '',
     'overriddenStyleId': 'b4'},
    {'type': 'BUTTON', 'entityId': '', 'overriddenStyleId': 'b4'}]},
  {'dataAppId': 1196847240,
   'viewId': 1530454703,
   'styleCount': {'b2': 2,
    'no1': 2,
    'ca1': 2,
    'ca3': 4,
    'ta1': 1,
    'ca2': 4,
    'ca6': 2,
    't1': 1},
   'overriddenStyles': [{'type': 'BUTTON',
     'entityId': '',
     'overriddenStyleId': 'b2'},
    {'type': 'BUTTON', 'entityId': '', 'overriddenStyleId': 'b2'},
    {'type': 'CARD', 'entityId': '1972235697', 'overriddenStyleId': 'ca3'},
    {'type': 'CARD', 'entityId': '1100652071', 'overriddenStyleId': 'ca6'},
    {'type': 'CARD', 'entityId': '109619440', 'overriddenStyleId': 'ca6'},
    {'type': 'CARD', 'entityId': '258520146', 'overriddenStyleId': 'ca3'}]},
  {'dataAppId': 1196847240,
   'viewId': 582861221,
   'styleCount': {'no1': 1, 'ca1': 3, 'ca2': 1},
   'overriddenStyles': []},
  {'dataAppId': 1196847240,
   'viewId': 759073442,
   'styleCount': {'ca1': 2, 'ta1': 1, 'ca2': 6, 'ca4': 2, 'b1': 1},
   'overriddenStyles': [{'type': 'CARD',
     'entityId': '2099556862',
     'overriddenStyleId': 'ca4'},
    {'type': 'CARD', 'entityId': '1976806051', 'overriddenStyleId': 'ca4'}]},
  {'dataAppId': 1196847240,
   'viewId': 2074587130,
   'styleCount': {'ta2': 1, 'ca2': 4, 'fo1': 1},
   'overriddenStyles': [{'type': 'TABS',
     'entityId': '',
     'overriddenStyleId': 'ta2'}]},
  {'dataAppId': 1196847240,
   'viewId': 161050215,
   'styleCount': {'no1': 1,
    'ca1': 5,
    'ca3': 3,
    'ca2': 3,
    'ta1': 1,
    't1': 1,
    'b1': 2},
   'overriddenStyles': []}],
 'navigations': [{'dataAppId': 1196847240,
   'entity': 'HOME',
   'entityId': 'home',
   'title': 'Home',
   'description': 'All Domo apps',
   'navOrder': 1,
   'visible': True,
   'interaction': None,
   'icon': {'value': 'home', 'size': 'DEFAULT'},
   'iconPosition': 'LEFT',
   'style': None},
  {'dataAppId': 1196847240,
   'entity': 'VIEW',
   'entityId': '381081924',
   'title': 'Overview',
   'description': None,
   'navOrder': 2,
   'visible': True,
   'interaction': None,
   'icon': {'value': 'star', 'size': 'DEFAULT'},
   'iconPosition': 'TOP',
   'style': None},
  {'dataAppId': 1196847240,
   'entity': 'VIEW',
   'entityId': '1530454703',
   'title': 'Business Review',
   'description': None,
   'navOrder': 3,
   'visible': True,
   'interaction': None,
   'icon': {'value': 'card', 'size': 'DEFAULT'},
   'iconPosition': 'TOP',
   'style': None},
  {'dataAppId': 1196847240,
   'entity': 'VIEW',
   'entityId': '2074587130',
   'title': 'Feedback',
   'description': None,
   'navOrder': 4,
   'visible': True,
   'interaction': None,
   'icon': {'value': 'approval-center-alt', 'size': 'DEFAULT'},
   'iconPosition': 'TOP',
   'style': None},
  {'dataAppId': 1196847240,
   'entity': 'VIEW',
   'entityId': '161050215',
   'title': 'Page Drill',
   'description': None,
   'navOrder': 5,
   'visible': True,
   'interaction': None,
   'icon': {'value': 'drill', 'size': 'DEFAULT'},
   'iconPosition': 'TOP',
   'style': None},
  {'dataAppId': 1196847240,
   'entity': 'VIEW',
   'entityId': '759073442',
   'title': 'Growth Metrics',
   'description': None,
   'navOrder': 6,
   'visible': True,
   'interaction': None,
   'icon': {'value': 'grouping', 'size': 'DEFAULT'},
   'iconPosition': 'TOP',
   'style': None},
  {'dataAppId': 1196847240,
   'entity': 'VIEW',
   'entityId': '582861221',
   'title': 'Drill view',
   'description': None,
   'navOrder': 7,
   'visible': False,
   'interaction': None,
   'icon': {'value': 'pages', 'size': 'DEFAULT'},
   'iconPosition': 'LEFT',
   'style': None},
  {'dataAppId': 1196847240,
   'entity': 'AI_ASSISTANT',
   'entityId': 'ai_assistant',
   'title': 'Domo.AI',
   'description': None,
   'navOrder': 8,
   'visible': True,
   'interaction': None,
   'icon': {'value': 'ai-chat', 'size': 'DEFAULT'},
   'iconPosition': 'LEFT',
   'style': None},
  {'dataAppId': 1196847240,
   'entity': 'CONTROLS',
   'entityId': 'controls',
   'title': 'Controls',
   'description': 'Filters, segments & variables',
   'navOrder': 9,
   'visible': True,
   'interaction': None,
   'icon': {'value': 'controls', 'size': 'DEFAULT'},
   'iconPosition': 'LEFT',
   'style': None},
  {'dataAppId': 1196847240,
   'entity': 'DISTRIBUTE',
   'entityId': 'distribute',
   'title': 'Distribute',
   'description': 'Distribution & access',
   'navOrder': 10,
   'visible': True,
   'interaction': None,
   'icon': {'value': 'arrow-box', 'size': 'DEFAULT'},
   'iconPosition': 'LEFT',
   'style': None},
  {'dataAppId': 1196847240,
   'entity': 'MORE',
   'entityId': 'more',
   'title': 'More',
   'description': None,
   'navOrder': 11,
   'visible': True,
   'interaction': None,
   'icon': {'value': 'dots-vertical', 'size': 'DEFAULT'},
   'iconPosition': 'LEFT',
   'style': None}],
 'persistSettings': None}

source

get_appstudio_access

 get_appstudio_access (auth, appstudio_id, debug_api:bool=False,
                       session:httpx.AsyncClient=None,
                       parent_class:str=None,
                       debug_num_stacks_to_drop:int=1)

retrieves accesslist, which users and groups a page is shared with

sample implementation get_appstudio_access

appstudio_id = 1196847240

(await get_appstudio_access(
    appstudio_id=appstudio_id,
    auth=token_auth,
)).response
{'users': [{'id': 1366439699,
   'invitorUserId': 27,
   'displayName': 'Chuck irwin',
   'userName': 'chuck.irwin@domo.com',
   'emailAddress': 'chuck.irwin@domo.com',
   'accepted': True,
   'userType': 'USER',
   'modified': 1700518401411,
   'created': 1700518306,
   'role': 'Admin',
   'roleId': 1,
   'rights': 63,
   'anonymous': False,
   'systemUser': False,
   'pending': False,
   'active': True},
  {'id': 1786804487,
   'invitorUserId': 27,
   'displayName': 'Khushboo',
   'userName': 'khushboo@domo.com',
   'emailAddress': 'khushboo@domo.com',
   'accepted': True,
   'userType': 'USER',
   'modified': 1701291697710,
   'created': 1700518291,
   'role': 'Admin',
   'roleId': 1,
   'rights': 63,
   'anonymous': False,
   'systemUser': False,
   'pending': False,
   'active': True},
  {'id': 694942127,
   'invitorUserId': 617808774,
   'displayName': 'Chris Wright',
   'userName': 'Chris.Wright@domo.com',
   'emailAddress': 'Chris.Wright@domo.com',
   'accepted': True,
   'userType': 'USER',
   'modified': 1704931666934,
   'created': 1660858240,
   'role': 'Privileged',
   'roleId': 2,
   'rights': 31,
   'anonymous': False,
   'systemUser': False,
   'pending': False,
   'active': True}],
 'groups': [{'id': 1324037627,
   'name': 'Default',
   'type': 'adHoc',
   'userIds': [1003855998,
    1005321923,
    1006847540,
    1009228622,
    1012895591,
    1021209915,
    1021688059,
    1022327751,
    1022341329,
    1022596574,
    1023033325,
    1023492594,
    1024352013,
    1026032102,
    1026684838,
    1026818196,
    1028430812,
    1028839816,
    1030197957,
    103478499,
    1035663615,
    1041963216,
    1042629793,
    1043536530,
    104884457,
    105076926,
    1054357604,
    1058287102,
    1058319008,
    1061133977,
    1066291222,
    1067993352,
    1069862308,
    1070081317,
    1071582099,
    107379878,
    1073955791,
    1074210114,
    1074976820,
    1075184693,
    1075882771,
    1077424620,
    1077721049,
    1077812516,
    1079474652,
    1083995483,
    1086095957,
    1089682199,
    1095242022,
    1095515127,
    1099560376,
    1102391116,
    1103814687,
    1107049797,
    1107344487,
    110828165,
    1111219722,
    1111818184,
    1112248364,
    1114513049,
    1119789938,
    1124017060,
    1126626304,
    1126769547,
    1127437771,
    112808796,
    1128357459,
    1129610104,
    1129952107,
    1133087654,
    1133154604,
    1135469502,
    1136849063,
    113767912,
    1140500521,
    1141078945,
    114141046,
    1143186878,
    1144220331,
    1147120777,
    1148642189,
    1149821919,
    1153758312,
    1154339157,
    1156717068,
    1156753093,
    1157004717,
    1158660500,
    1158827447,
    1160689107,
    1162457281,
    1164282372,
    1164847096,
    1164900583,
    1167229793,
    1167580245,
    1172154211,
    1173277842,
    1174239613,
    1175210937,
    1178984171,
    1179514139,
    1180517272,
    1183967954,
    1186995515,
    1204317927,
    1205363669,
    1209365095,
    1210115465,
    1212253766,
    1213747030,
    1216550715,
    1217337920,
    1221527375,
    1226251082,
    1227422648,
    1228812242,
    1229264718,
    1235331366,
    1235683338,
    1235890693,
    1235909185,
    1237181717,
    1238561642,
    1240937786,
    1241615551,
    1247436431,
    1247979899,
    1248851961,
    1249795924,
    1250299904,
    1251168784,
    1254925023,
    1255733840,
    1256560737,
    1258396799,
    1261799105,
    1264728842,
    126614595,
    126620914,
    1267242239,
    1276250555,
    1276363831,
    127872581,
    1280127799,
    1283622745,
    128405750,
    128618865,
    1288451189,
    128862746,
    1289380886,
    1291352979,
    1291523817,
    1294899258,
    129697674,
    129708464,
    1297456291,
    1300285022,
    1300567568,
    1300688163,
    1307127140,
    1309325628,
    1311515624,
    1314495818,
    131538312,
    1317416535,
    1318781111,
    1322230863,
    1323265289,
    1331938026,
    1332358800,
    1332881296,
    1334846498,
    1334944649,
    1339082609,
    13409734,
    1343302620,
    1345102715,
    1345129084,
    1345408759,
    1345737456,
    1346658577,
    1348595616,
    1349172734,
    1350294309,
    1352687765,
    1354070971,
    1356741733,
    1364898782,
    1366439699,
    1366575707,
    136757335,
    1368493216,
    1370941052,
    1376601827,
    1379267200,
    1387513974,
    1392335990,
    1393041743,
    1399847286,
    1402389708,
    1402488205,
    1405422355,
    1406738523,
    140733736,
    1409092465,
    1410075577,
    1410158005,
    1413710032,
    1416802348,
    1417035913,
    1417635412,
    1419106042,
    1420303726,
    1420612807,
    1422201990,
    1424841970,
    1427340382,
    1428521071,
    1430135354,
    1430590895,
    1432167731,
    1432566836,
    1433566785,
    1436695438,
    1437931806,
    1438019680,
    1442284312,
    1444085156,
    1445955258,
    1446165056,
    1446658852,
    1447079740,
    1447682110,
    144861307,
    1448762979,
    1450482043,
    1452681622,
    1454084985,
    1454491099,
    1456864572,
    1460304297,
    1462075216,
    1464199020,
    1465911092,
    1466717367,
    1467802853,
    1473066133,
    1473183764,
    1474057380,
    1475401356,
    1475938947,
    1481936434,
    1482815038,
    1482875007,
    1484679935,
    1486961550,
    148885605,
    1489262484,
    1490253691,
    1491630095,
    1492355789,
    1496003336,
    149943626,
    1504505648,
    1504906779,
    1505119319,
    150888404,
    1510087228,
    1510707998,
    1511056863,
    1511288929,
    1511706270,
    1515357536,
    1516100683,
    1518327550,
    1521147588,
    1526226447,
    1526670194,
    152768850,
    1528879682,
    1530098431,
    1531309335,
    1536620274,
    1540120881,
    1542225148,
    1542489020,
    1542505954,
    1545439064,
    1548024167,
    1548628586,
    1549405309,
    1550403143,
    1550483411,
    1550854416,
    1554308974,
    1560188402,
    1561128256,
    1561518565,
    1562145676,
    1562222983,
    1564544856,
    1571557745,
    1575177145,
    1576143491,
    1579300917,
    1580059641,
    1585681892,
    158618860,
    1592852084,
    1593765755,
    1593927405,
    159409372,
    1596130321,
    1596455782,
    1596755774,
    15967693,
    1598636809,
    1599328022,
    1599436385,
    1601139623,
    1604848787,
    1605094930,
    1605155302,
    1605839238,
    1611395476,
    1611416873,
    1612175103,
    1614252468,
    1614267487,
    1615206694,
    161757523,
    1623315820,
    1627644702,
    1628021317,
    1628812063,
    1630318017,
    1639548482,
    1641144375,
    1643055542,
    1643448567,
    1643805121,
    1648883370,
    1653650421,
    1656078706,
    1659710621,
    1660239002,
    1660543077,
    1660576736,
    1663510552,
    1664064133,
    1665112798,
    1666073542,
    1667733724,
    1669239819,
    1669497648,
    1670130309,
    1674308740,
    1674821429,
    1675127148,
    1680781770,
    1681443709,
    1695991852,
    1698756799,
    1700271359,
    1701373377,
    1702863473,
    1703205755,
    1703821116,
    1705945348,
    1706726125,
    1707178274,
    170736805,
    1707466008,
    1708706984,
    171097580,
    171155629,
    1714737020,
    1716113104,
    1717459054,
    1718663434,
    1719195338,
    171953057,
    1720733213,
    1724492157,
    1725780094,
    1728973208,
    1730716954,
    1731503192,
    173326437,
    1734948150,
    1735590743,
    1735973578,
    1736997538,
    1738612075,
    1743239604,
    1745734282,
    1745734598,
    1746885226,
    1748840822,
    1752469262,
    1753446731,
    1754553876,
    175496244,
    1755736914,
    1756066802,
    1756298872,
    1758333940,
    1760805267,
    1763459532,
    1765447389,
    1768121870,
    1768567034,
    1769260964,
    1771178911,
    1774387618,
    177583908,
    1777136407,
    1781257044,
    1782656484,
    1783658226,
    1783864164,
    1786266563,
    1786804487,
    178731478,
    1788357829,
    1789075946,
    179439276,
    1797205472,
    1798117326,
    1798945942,
    1799092117,
    17995996,
    1799629516,
    1800882529,
    1802832310,
    1802840904,
    1805731885,
    1806398279,
    1806588371,
    1811602058,
    1811636355,
    1813699598,
    1814731034,
    1817189445,
    1819193468,
    1819752006,
    182025737,
    1822176796,
    1823590023,
    1823837054,
    1825354355,
    1826194919,
    1827807231,
    1827996033,
    1831527649,
    1833256765,
    1835516806,
    1838657427,
    1843503485,
    1844820961,
    1845792835,
    1847316376,
    1851274304,
    1853825438,
    1855865982,
    1857675503,
    1860458599,
    1862949161,
    1863616231,
    1863976775,
    1865099622,
    1866341252,
    1870751862,
    1870908158,
    1879536064,
    1884872332,
    1884982085,
    1886272687,
    1892854889,
    1893952720,
    1894642361,
    1894829946,
    1895530863,
    1898323170,
    1901097935,
    1902279940,
    1902508626,
    1906627316,
    1907873006,
    1908234603,
    190916666,
    1909441383,
    191198922,
    1915469585,
    1920237552,
    1921150296,
    1927492621,
    1928626440,
    1930483214,
    1930954970,
    1933172894,
    1935496824,
    1937166519,
    1937892219,
    1939536265,
    1940512896,
    1943381220,
    1946374552,
    1946667072,
    1950208331,
    1951475044,
    1951890629,
    1952630085,
    1955960782,
    1956068159,
    1957334859,
    1957552134,
    1957615361,
    19623317,
    1965787872,
    1965815240,
    1966345729,
    1967686990,
    1968583093,
    1968947252,
    196911065,
    197037442,
    1975818067,
    1978433201,
    1980514385,
    1983575142,
    1984590300,
    1984776325,
    1985157190,
    1986430038,
    2003932862,
    2007069911,
    2007615410,
    2008958856,
    2009312032,
    2016764033,
    2017773233,
    2021204172,
    2024185027,
    2024984490,
    2027352206,
    2032566514,
    203312292,
    2033821527,
    2037040717,
    2038425160,
    204012057,
    2041273894,
    204148642,
    2043039295,
    2045716426,
    2049193313,
    2050434505,
    2052596821,
    2053411736,
    2055861446,
    2056077938,
    2058388058,
    2058521903,
    2059383812,
    2066274468,
    2067291301,
    2067419841,
    2067643379,
    206823980,
    2070002244,
    2072302260,
    2072616249,
    2073032142,
    2074422502,
    2075954718,
    2076863414,
    2076893136,
    2079863704,
    208038823,
    2082060406,
    2083164466,
    2084853822,
    2087243500,
    2088203166,
    2088255083,
    2088345189,
    2096641889,
    2106582747,
    2107498105,
    2114883250,
    2117185558,
    2118125007,
    2118598787,
    2120286023,
    2120623179,
    2121861625,
    2122394776,
    2124994254,
    2125494212,
    2129297797,
    2131674559,
    2133008025,
    2134510010,
    2139862078,
    2140076978,
    2142004350,
    2142937372,
    2144185095,
    2144558191,
    217486776,
    219603826,
    21963932,
    223050776,
    223659089,
    22517258,
    226070803,
    227145670,
    22814017,
    232290953,
    232754469,
    233216585,
    234674439,
    235252533,
    23592318,
    237681378,
    238259602,
    243893801,
    244750981,
    245758384,
    248570266,
    248641709,
    250002294,
    251596940,
    251728064,
    252868567,
    252907668,
    25522868,
    261748279,
    263469872,
    269129820,
    271775584,
    27228135,
    274257573,
    274485918,
    277400412,
    278268339,
    278549927,
    282788645,
    283501172,
    284756277,
    286176487,
    28892157,
    291892309,
    292506035,
    29257675,
    293704698,
    294996492,
    295094655,
    299317591,
    300078206,
    305251463,
    306484945,
    307632801,
    308013573,
    308783524,
    310645919,
    313167177,
    313985951,
    314095382,
    315118889,
    316139172,
    320047072,
    321795113,
    322568655,
    324905103,
    325350277,
    329783264,
    330587181,
    334700892,
    3385967,
    341823835,
    344553325,
    348233905,
    348727040,
    351874351,
    353255644,
    353925131,
    358184938,
    363397932,
    363620917,
    366464815,
    367746229,
    370299454,
    370513898,
    373024172,
    374388983,
    375140316,
    375460758,
    38060857,
    381807383,
    382014996,
    38213767,
    382550235,
    384663973,
    387600969,
    388564516,
    389781527,
    392468792,
    393359717,
    396783523,
    397036832,
    400830795,
    405225188,
    406792913,
    408081,
    408282746,
    409176773,
    413951985,
    416285069,
    421610852,
    421800440,
    421973368,
    422938272,
    423248731,
    426129058,
    427089328,
    427363308,
    427539828,
    429382701,
    429636762,
    431162856,
    43219035,
    435876821,
    436035368,
    440017659,
    440282646,
    441867017,
    445086955,
    448077151,
    448447535,
    453370178,
    453523183,
    453718916,
    454872817,
    458175109,
    458290686,
    458380192,
    458806279,
    459213300,
    45921843,
    459279105,
    462392893,
    462744067,
    462796153,
    467327835,
    468329724,
    468362663,
    468742180,
    470456174,
    471453161,
    471687709,
    473863458,
    475277305,
    475856860,
    476641103,
    478261546,
    478867517,
    48362993,
    486301178,
    487316396,
    489005238,
    490351974,
    49241231,
    49602451,
    502170574,
    502278247,
    50322846,
    504807367,
    50509822,
    505651363,
    509210870,
    50930510,
    509534198,
    511184051,
    511612035,
    514559307,
    516978807,
    520354829,
    522984988,
    525592428,
    538518671,
    539925853,
    540788968,
    541128711,
    541789279,
    543426310,
    546262753,
    547299980,
    548138821,
    556423215,
    55703651,
    557944752,
    55874022,
    568212686,
    570885248,
    571408327,
    574244836,
    575741188,
    576344324,
    576893708,
    577951659,
    578107238,
    580083137,
    581714079,
    581759206,
    582688310,
    583215149,
    584275890,
    584997384,
    585823160,
    586496271,
    587073592,
    587084188,
    587894148,
    590129555,
    591544865,
    596117551,
    598311345,
    59978761,
    601874628,
    602535063,
    603745660,
    610286698,
    611290261,
    612085674,
    613520555,
    615071860,
    61634052,
    617808774,
    619912544,
    622836461,
    627335536,
    633353628,
    636595238,
    637761742,
    642610950,
    643568185,
    644099959,
    644655602,
    644731313,
    645070475,
    648539990,
    648662760,
    649052436,
    649874100,
    653267187,
    655762077,
    657447270,
    657636287,
    658147723,
    658984547,
    662594027,
    663516735,
    664474247,
    665351193,
    66939805,
    671208405,
    672481709,
    672705975,
    673226314,
    67322960,
    674419397,
    67539566,
    675718858,
    67964024,
    680266860,
    68216396,
    684068578,
    68838362,
    688516957,
    690489141,
    691306239,
    693114402,
    693711905,
    693722501,
    694066152,
    694942127,
    696468809,
    699075231,
    699130027,
    700853696,
    710944950,
    711202921,
    712775540,
    716713486,
    717021134,
    719511661,
    722128535,
    733251642,
    739433261,
    740627276,
    742389268,
    74259340,
    746999464,
    747252728,
    749054906,
    749848850,
    75055161,
    752937626,
    754132743,
    756306366,
    758738079,
    759792319,
    760234499,
    760504801,
    760748705,
    764526063,
    768155343,
    768786511,
    769300939,
    771178686,
    779241028,
    782016589,
    783279259,
    783640861,
    786500704,
    787983063,
    78899246,
    794862702,
    795553497,
    796785200,
    797235532,
    798452601,
    799381630,
    800249448,
    802190437,
    803276497,
    805381129,
    805649835,
    809528604,
    809819287,
    80994801,
    81274900,
    812795977,
    813579940,
    814912330,
    815635231,
    815850078,
    817940218,
    819002820,
    819498402,
    821071146,
    824918681,
    825167430,
    826020125,
    827093373,
    829419006,
    830455362,
    832377355,
    834312894,
    838842812,
    840882002,
    841259393,
    841775414,
    841832133,
    843013871,
    844044381,
    847434386,
    84809569,
    850834051,
    851160104,
    852710651,
    852724454,
    854312022,
    854404233,
    855053174,
    85654293,
    857242114,
    858278995,
    86093101,
    861444808,
    861491198,
    861713885,
    864473250,
    866842113,
    868405052,
    869573315,
    871004497,
    87294754,
    874450985,
    876996390,
    877557862,
    879217934,
    879452672,
    885885801,
    889914845,
    890380826,
    891261616,
    ...],
   'creatorId': 2,
   'hidden': False,
   'default': True,
   'active': True}],
 'totalUserCount': 1055}

source

get_appstudios_adminsummary

 get_appstudios_adminsummary (auth:domolibrary.client.DomoAuth.DomoAuth,
                              debug_loop:bool=False, limit=35,
                              debug_api:bool=False,
                              session:httpx.AsyncClient=None,
                              parent_class:str=None)

retrieves all pages in instance user is able to see (but may not have been explicitly shared)

await get_appstudios_adminsummary(auth=token_auth, debug_loop=False, debug_api=False)
ResponseGetData(status=200, response=[{'dataAppId': 847733852, 'title': 'Accounts Receivable App', 'locked': False, 'viewCount': 2, 'owners': [{'id': 68216396, 'type': 'USER', 'displayName': 'Elliott Leonard'}], 'lastUpdated': 1709851259000}, {'dataAppId': 1747825976, 'title': 'App title', 'locked': False, 'viewCount': 2, 'owners': [{'id': 1728973208, 'type': 'USER', 'displayName': 'Peter Shull'}], 'lastUpdated': 1723036167000}, {'dataAppId': 1710927247, 'title': 'App title', 'locked': False, 'viewCount': 1, 'owners': [{'id': 68216396, 'type': 'USER', 'displayName': 'Elliott Leonard'}], 'lastUpdated': 1702055876795}, {'dataAppId': 1890921214, 'title': 'App title', 'locked': False, 'viewCount': 4, 'owners': [{'id': 55874022, 'type': 'USER', 'displayName': 'Grant Smith'}], 'lastUpdated': 1712672190000}, {'dataAppId': 1583730529, 'title': 'App title', 'locked': False, 'viewCount': 1, 'owners': [{'id': 952686066, 'type': 'USER', 'displayName': 'Phillip Rechani'}], 'lastUpdated': 1713449977064}, {'dataAppId': 1526743827, 'title': 'App title', 'locked': True, 'viewCount': 2, 'owners': [{'id': 1526226447, 'type': 'USER', 'displayName': 'IsraelDuran@outlook.com'}], 'lastUpdated': 1702587814000}, {'dataAppId': 1461606189, 'title': 'App title', 'locked': False, 'viewCount': 1, 'owners': [{'id': 1738612075, 'type': 'USER', 'displayName': 'Larry Mullins'}], 'lastUpdated': 1731690362000}, {'dataAppId': 1269242427, 'title': 'App title', 'locked': False, 'viewCount': 1, 'owners': [{'id': 182025737, 'type': 'USER', 'displayName': 'Tyler Lachney'}], 'lastUpdated': 1713449591782}, {'dataAppId': 1902414365, 'title': 'App title', 'locked': False, 'viewCount': 2, 'owners': [{'id': 612085674, 'type': 'USER', 'displayName': 'Oleksii Zakrevskyi'}, {'id': 1893952720, 'type': 'USER', 'displayName': 'Jae Wilson1'}], 'lastUpdated': 1732743256000}, {'dataAppId': 849608534, 'title': 'App title', 'locked': False, 'viewCount': 1, 'owners': [{'id': 1893952720, 'type': 'USER', 'displayName': 'Jae Wilson1'}], 'lastUpdated': 1702057454053}, {'dataAppId': 804014123, 'title': 'App title', 'locked': False, 'viewCount': 1, 'owners': [{'id': 970534321, 'type': 'USER', 'displayName': 'Chris Davis'}], 'lastUpdated': 1716492985470}, {'dataAppId': 787767439, 'title': 'App title', 'locked': False, 'viewCount': 1, 'owners': [{'id': 1893952720, 'type': 'USER', 'displayName': 'Jae Wilson1'}], 'lastUpdated': 1713913034152}, {'dataAppId': 563855481, 'title': 'App title', 'locked': False, 'viewCount': 1, 'owners': [{'id': 1786804487, 'type': 'USER', 'displayName': 'Khushboo'}], 'lastUpdated': 1701209860186}, {'dataAppId': 342426720, 'title': 'App title', 'locked': False, 'viewCount': 1, 'owners': [{'id': 1865099622, 'type': 'USER', 'displayName': 'Ben Schein'}], 'lastUpdated': 1715097444903}, {'dataAppId': 335039614, 'title': 'App title', 'locked': False, 'viewCount': 1, 'owners': [{'id': 1473183764, 'type': 'USER', 'displayName': 'tyler.clark@domo.com'}], 'lastUpdated': 1712855514089}, {'dataAppId': 295094402, 'title': 'App title', 'locked': False, 'viewCount': 1, 'owners': [{'id': 1548628586, 'type': 'USER', 'displayName': 'Mike Zollinger'}], 'lastUpdated': 1728054231000}, {'dataAppId': 29297295, 'title': 'App title', 'locked': False, 'viewCount': 1, 'owners': [{'id': 1564544856, 'type': 'USER', 'displayName': 'shana.brennan'}], 'lastUpdated': 1702409814733}, {'dataAppId': 1196847240, 'title': 'Demo App', 'locked': False, 'viewCount': 6, 'owners': [{'id': 1786804487, 'type': 'USER', 'displayName': 'Khushboo'}, {'id': 694942127, 'type': 'USER', 'displayName': 'Chris Wright'}], 'lastUpdated': 1727129743000}, {'dataAppId': 1912497414, 'title': 'Domo Admin Operations', 'locked': False, 'viewCount': 1, 'owners': [{'id': 1950208331, 'type': 'USER', 'displayName': 'Justin Walsh'}, {'id': 475856860, 'type': 'USER', 'displayName': 'Noah Finberg'}], 'lastUpdated': 1722893532000}, {'dataAppId': 228500619, 'title': 'Domo Singles', 'locked': False, 'viewCount': 2, 'owners': [{'id': 1728973208, 'type': 'USER', 'displayName': 'Peter Shull'}], 'lastUpdated': 1721053760000}, {'dataAppId': 706364871, 'title': 'Ellibot', 'locked': False, 'viewCount': 2, 'owners': [{'id': 68216396, 'type': 'USER', 'displayName': 'Elliott Leonard'}], 'lastUpdated': 1703090132000}, {'dataAppId': 27136865, 'title': 'Pro-code Editor Interest Group', 'locked': False, 'viewCount': 1, 'owners': [{'id': 1826194919, 'type': 'USER', 'displayName': 'Tanner Garrett'}], 'lastUpdated': 1715377105000}, {'dataAppId': 2033226330, 'title': 'Project NBA | Playoff Highlights', 'locked': False, 'viewCount': 2, 'owners': [{'id': 29257675, 'type': 'USER', 'displayName': 'Shivam Desai - BTP'}], 'lastUpdated': 1729706798000}, {'dataAppId': 1830734428, 'title': 'Project NBA | Regular Season Highlights', 'locked': False, 'viewCount': 4, 'owners': [{'id': 29257675, 'type': 'USER', 'displayName': 'Shivam Desai - BTP'}], 'lastUpdated': 1729718947000}, {'dataAppId': 1082827381, 'title': 'Project NBA | Swish Central', 'locked': False, 'viewCount': 3, 'owners': [{'id': 29257675, 'type': 'USER', 'displayName': 'Shivam Desai - BTP'}], 'lastUpdated': 1729705166000}, {'dataAppId': 72534732, 'title': 'Project WNBA | Playoff Highlights', 'locked': False, 'viewCount': 2, 'owners': [{'id': 29257675, 'type': 'USER', 'displayName': 'Shivam Desai - BTP'}], 'lastUpdated': 1726872164000}, {'dataAppId': 946569917, 'title': 'Project WNBA | Regular Season Highlights', 'locked': False, 'viewCount': 4, 'owners': [{'id': 29257675, 'type': 'USER', 'displayName': 'Shivam Desai - BTP'}], 'lastUpdated': 1729712698000}, {'dataAppId': 1637948555, 'title': 'Project WNBA | Swish Central', 'locked': False, 'viewCount': 3, 'owners': [{'id': 29257675, 'type': 'USER', 'displayName': 'Shivam Desai - BTP'}], 'lastUpdated': 1726872678000}], is_success=True, parent_class=None)

source

generate_body_share_appstudio

 generate_body_share_appstudio (resource_ids:list, group_ids:list=None,
                                user_ids:list=None, message:str=None)

source

generate_body_add_page_owner_appstudios

 generate_body_add_page_owner_appstudios (appstudio_id_ls:List[int],
                                          group_id_ls:List[int]=None,
                                          user_id_ls:List[int]=None,
                                          note:str='',
                                          send_email:bool=False)

source

share

 share (auth:domolibrary.client.DomoAuth.DomoAuth, resource_ids:list,
        group_ids:list=None, user_ids:list=None, message:str=None,
        debug_api:bool=False, session:httpx.AsyncClient=None,
        parent_class:str=None, debug_num_stacks_to_drop=1)
Type Default Details
auth DomoAuth
resource_ids list
group_ids list None
user_ids list None
message str None email to user
debug_api bool False
session AsyncClient None
parent_class str None
debug_num_stacks_to_drop int 1

source

add_page_owner

 add_page_owner (auth:domolibrary.client.DomoAuth.DomoAuth,
                 appstudio_id_ls:List[int], group_id_ls:List[int]=None,
                 user_id_ls:List[int]=None, note:str='',
                 send_email:bool=False, debug_api:bool=False,
                 session:httpx.AsyncClient=None, parent_class:str=None,
                 debug_num_stacks_to_drop=1)

Sample Add appstudio owner

appstudio_id = 1902414365

try:
    user_id = "1893952720"
    print( (await add_page_owner(
        appstudio_id_ls=[appstudio_id],
        auth=token_auth,
        group_id_ls=[],
        user_id_ls=[user_id])).response)
except:
    print ("Error")
[1902414365] appstudios successfully shared with 1893952720 as owners
(await share(
    auth=token_auth,
    resource_ids=[1902414365],
    group_ids=[1227809530],
    message=None,
    debug_api=False,
)).response
'[1902414365] appstudios successfully shared with 1227809530'