dashboardScreen
Get a dashboard screen to render in the form of a json list of sections containing cards or grouped cards each with an order attribute.
Arguments
The account number of the user.
The ID of the dashboard type screen to return.
The ledger id associated to the account.
Deprecation
The 'ledgerId' field is deprecated.Please use 'ledgerNumber' instead. This is in the form of 'L-123456789A'
- Marked as deprecated on 2024-10-22.
- Scheduled for removal on or after 2025-06-25.
The ledger number associated to the account.
The maximum version of dahshboard type screens supported by the client.
List of key-value pairs (strings) to pass as parameters to the screen.
The property id associated to the account.
Possible Errors
- KT-CT-1113: Disabled GraphQL field requested.
- KT-CT-3820: Received both ledger ID and number.
- KT-CT-7899: An internal error occurred.
- KT-CT-8001: No backend screen available.
- KT-CT-8005: Backend screen does not support parameters.
- KT-CT-8006: Error applying parameters to backend screen.
- KT-CT-8008: Incorrect or missing data necessary to build the screen.
- KT-CT-8009: Error translating screen content.
- KT-CT-8010: Invalid step ID.
- KT-CT-8011: Cannot rewind past a previous irreversible step.
Allowed Viewers
Query Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
query DashboardScreen(
$accountNumber: String!,
$dashboardId: ID!,
$ledgerNumber: String,
$maxVersionSupported: Int!,
$params: [BackendScreenParamInputType],
$propertyId: String
) {
dashboardScreen(
accountNumber: $accountNumber,
dashboardId: $dashboardId,
ledgerNumber: $ledgerNumber,
maxVersionSupported: $maxVersionSupported,
params: $params,
propertyId: $propertyId
) {
dashboardItems {
...SectionTypeFragment
}
id
serialisedDashboardItems
typename
}
}
Variables
{
"accountNumber": "A-186432D6",
"dashboardId": "37572905",
"ledgerNumber": "concern-item-citizen-resource-property",
"maxVersionSupported": 33,
"params": BackendScreenParamInputType,
"propertyId": "18645526"
}
Response
{
"data": {
"dashboardScreen": {
"dashboardItems": [SectionType],
"id": "69954386",
"serialisedDashboardItems": "space-near-must-surface-law",
"typename": "how-full-election-agency-position"
}
}
}