Class GetClientGrantsRequest
- Namespace
- Auth0.ManagementApi.Models
- Assembly
- Auth0.ManagementApi.dll
Specifies criteria to use when querying all client grants.
public class GetClientGrantsRequest
- Inheritance
-
GetClientGrantsRequest
- Inherited Members
Properties
AllowAllScopes
When enabled, all scopes configured on the resource server are allowed for by this client grant.
[JsonProperty("allow_all_scopes")]
public bool? AllowAllScopes { get; set; }
Property Value
- bool?
AllowAnyOrganization
If enabled, any organization can be used with this grant. If disabled (default), the grant must be explicitly assigned to the desired organizations.
public bool? AllowAnyOrganization { get; set; }
Property Value
- bool?
Audience
URL Encoded audience of a client grant to filter.
public string Audience { get; set; }
Property Value
ClientId
The Id of a client to filter by.
public string ClientId { get; set; }
Property Value
SubjectType
The type of application access the client grant allows.
[JsonConverter(typeof(StringEnumConverter))]
[JsonProperty("subject_type")]
public ClientGrantSubjectType? SubjectType { get; set; }