GET api/smartview/dashboard?userArn={userArn}

Get dashboards by a user

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userArn

The userarn queried

string

Required

Body Parameters

None.

Response Information

Resource Description

A list of DashboardResponses

Collection of DashboardResponse
NameDescriptionTypeAdditional 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>