Honeycode / Client / get_screen_data

get_screen_data#

Honeycode.Client.get_screen_data(**kwargs)#

The GetScreenData API allows retrieval of data from a screen in a Honeycode app. The API allows setting local variables in the screen to filter, sort or otherwise affect what will be displayed on the screen.

See also: AWS API Documentation

Request Syntax

response = client.get_screen_data(
    workbookId='string',
    appId='string',
    screenId='string',
    variables={
        'string': {
            'rawValue': 'string'
        }
    },
    maxResults=123,
    nextToken='string'
)
Parameters:
  • workbookId (string) –

    [REQUIRED]

    The ID of the workbook that contains the screen.

  • appId (string) –

    [REQUIRED]

    The ID of the app that contains the screen.

  • screenId (string) –

    [REQUIRED]

    The ID of the screen.

  • variables (dict) –

    Variables are optional and are needed only if the screen requires them to render correctly. Variables are specified as a map where the key is the name of the variable as defined on the screen. The value is an object which currently has only one property, rawValue, which holds the value of the variable to be passed to the screen.

    • (string) –

      • (dict) –

        The input variables to the app to be used by the InvokeScreenAutomation action request.

        • rawValue (string) – [REQUIRED]

          Raw value of the variable.

  • maxResults (integer) –

    The number of results to be returned on a single page. Specify a number between 1 and 100. The maximum value is 100.

    This parameter is optional. If you don’t specify this parameter, the default page size is 100.

  • nextToken (string) –

    This parameter is optional. If a nextToken is not specified, the API returns the first page of data.

    Pagination tokens expire after 1 hour. If you use a token that was returned more than an hour back, the API will throw ValidationException.

Return type:

dict

Returns:

Response Syntax

{
    'results': {
        'string': {
            'headers': [
                {
                    'name': 'string',
                    'format': 'AUTO'|'NUMBER'|'CURRENCY'|'DATE'|'TIME'|'DATE_TIME'|'PERCENTAGE'|'TEXT'|'ACCOUNTING'|'CONTACT'|'ROWLINK'|'ROWSET'
                },
            ],
            'rows': [
                {
                    'rowId': 'string',
                    'dataItems': [
                        {
                            'overrideFormat': 'AUTO'|'NUMBER'|'CURRENCY'|'DATE'|'TIME'|'DATE_TIME'|'PERCENTAGE'|'TEXT'|'ACCOUNTING'|'CONTACT'|'ROWLINK'|'ROWSET',
                            'rawValue': 'string',
                            'formattedValue': 'string'
                        },
                    ]
                },
            ]
        }
    },
    'workbookCursor': 123,
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • results (dict) –

      A map of all the rows on the screen keyed by block name.

      • (string) –

        • (dict) –

          ResultSet contains the results of the request for a single block or list defined on the screen.

          • headers (list) –

            List of headers for all the data cells in the block. The header identifies the name and default format of the data cell. Data cells appear in the same order in all rows as defined in the header. The names and formats are not repeated in the rows. If a particular row does not have a value for a data cell, a blank value is used.

            For example, a task list that displays the task name, due date and assigned person might have headers [ { “name”: “Task Name”}, {“name”: “Due Date”, “format”: “DATE”}, {“name”: “Assigned”, “format”: “CONTACT”} ]. Every row in the result will have the task name as the first item, due date as the second item and assigned person as the third item. If a particular task does not have a due date, that row will still have a blank value in the second element and the assigned person will still be in the third element.

            • (dict) –

              Metadata for column in the table.

              • name (string) –

                The name of the column.

              • format (string) –

                The format of the column.

          • rows (list) –

            List of rows returned by the request. Each row has a row Id and a list of data cells in that row. The data cells will be present in the same order as they are defined in the header.

            • (dict) –

              A single row in the ResultSet.

              • rowId (string) –

                The ID for a particular row.

              • dataItems (list) –

                List of all the data cells in a row.

                • (dict) –

                  The data in a particular data cell defined on the screen.

                  • overrideFormat (string) –

                    The overrideFormat is optional and is specified only if a particular row of data has a different format for the data than the default format defined on the screen or the table.

                  • rawValue (string) –

                    The raw value of the data. e.g. jsmith@example.com

                  • formattedValue (string) –

                    The formatted value of the data. e.g. John Smith.

    • workbookCursor (integer) –

      Indicates the cursor of the workbook at which the data returned by this workbook is read. Workbook cursor keeps increasing with every update and the increments are not sequential.

    • nextToken (string) –

      Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the query has been loaded.

Exceptions