Class CustomDomainsGetAllRequest
- Namespace
- Auth0.ManagementApi.Models
- Assembly
- Auth0.ManagementApi.dll
Represents a request to retrieve all custom domains with optional filtering, field selection, and sorting.
public class CustomDomainsGetAllRequest
- Inheritance
-
CustomDomainsGetAllRequest
- Inherited Members
- Extension Methods
Properties
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
- bool?
Query
Query in Lucene query string syntax.
public string? Query { get; set; }
Property Value
Sort
Field to sort by. Only domain:1 (ascending order by domain) is supported at this time.
public string? Sort { get; set; }