Class GetDeviceCredentialsRequest
- Namespace
- Auth0.ManagementApi.Models
- Assembly
- Auth0.ManagementApi.dll
Specifies criteria to use when querying all device credentials.
public class GetDeviceCredentialsRequest
- Inheritance
-
GetDeviceCredentialsRequest
- Inherited Members
Properties
ClientId
client_id of the devices to retrieve.
public string ClientId { get; set; }
Property Value
Fields
Comma-separated list of fields to include or exclude (based on value provided for include_fields) in the result. Leave empty to retrieve all fields.
public string Fields { get; set; }
Property Value
IncludeFields
Whether specified fields are to be included (true) or excluded (false).
public bool IncludeFields { get; set; }
Property Value
Type
Type of credentials to retrieve. Must be public_key
, refresh_token
or rotating_refresh_token
. The property will default to refresh_token
when paging is requested
public string Type { get; set; }
Property Value
UserId
user_id of the devices to retrieve.
public string UserId { get; set; }