GET api/smartview/dashboard?userArn={userArn}
Get dashboards by a user
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
userArn |
The userarn queried |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
A list of DashboardResponses
Collection of DashboardResponseName | Description | Type | Additional information |
---|---|---|---|
DashboardName |
The dashboard name |
string |
None. |
DashboardId |
The dashboard id |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "DashboardName": "sample string 1", "DashboardId": "sample string 2" }, { "DashboardName": "sample string 1", "DashboardId": "sample string 2" } ]
application/xml, text/xml
Sample:
<ArrayOfDashboardResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <DashboardResponse> <DashboardName>sample string 1</DashboardName> <DashboardId>sample string 2</DashboardId> </DashboardResponse> <DashboardResponse> <DashboardName>sample string 1</DashboardName> <DashboardId>sample string 2</DashboardId> </DashboardResponse> </ArrayOfDashboardResponse>