"dashboard" MDO List
Some tooltip text!
• 1 minute to read
• 1 minute to read
MDO list provider for Dashboard, can be used by Navigator.
Implemented by the
Additional Attributes
Description | Name | Example Value |
---|---|---|
Return only the current users dashboards | OnlyMine | False |
Only return dashboards you are allowed to update | CanUpdate | False |
Comma separated list of IDs to be omitted from the result | ExcludeIds | False |
Separator: &
Sample Request
GET /api/v1/MDOList/dashboard
Authorization: Basic dGplMDpUamUw
Accept: application/json; charset=utf-8
Accept-Language: *
Sample Code
var listProvider = SuperOffice.CRM.Lists.SoListProviderFactory.Create("dashboard", forceFlatList: true);
foreach (var item in listProvider.RootItems) {
Console.WriteLine("{0} {1} {2} {3}",
item.Id, ResourceManager.ParseInlineResources(item.Name), item.StyleHint, item.ExtraInfo);
}
Sample Output
Id | Name | StyleHint | ExtraInfo |
---|---|---|---|
1 | Status | ||
2 | Requests |
Related MDO Lists
- "dashboardheadings"
- "dashboardheadingswithallitem"
- "dashboardheadingswithallitemwithnoselection"
- "dashboardheadingswithnoselection"
- "dashboardwithallitem"
- "dashboardwithallitemwithnoselection"
- "dashboardwithnoselection"