listDashboards
inline suspend fun BcmDashboardsClient.listDashboards(crossinline block: ListDashboardsRequest.Builder.() -> Unit): ListDashboardsResponse
Returns a list of all dashboards in your account.
Samples
fun main() {
//sampleStart
// Listing dashboards for a user
val resp = bcmDashboardsClient.listDashboards()
//sampleEnd
}