listDevicesForUser

Retrieves a paginated list of devices associated with a specific user in a Wickr network. This operation returns information about all devices where the user has logged into Wickr.

Samples

// Successful device list retrieval
val resp = wickrClient.listDevicesForUser {
    networkId = "12345678"
    userId = "12345"
    maxResults = 10
    sortFields = "appId"
    sortDirection = SortDirection.fromValue("DESC")
}
// Retrieving subsequent page of devices
val resp = wickrClient.listDevicesForUser {
    networkId = "12345678"
    userId = "12345"
    maxResults = 10
    nextToken = "v1:pagination:6ba7b810-9dad-11d1-80b4-00c04fd430c8"
}