Table of Contents

Class ListOrganizationsRequestParameters

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll
[Serializable]
public record ListOrganizationsRequestParameters : IEquatable<ListOrganizationsRequestParameters>
Inheritance
ListOrganizationsRequestParameters
Implements
Inherited Members
Extension Methods

Properties

From

Optional Id from which to start selection.

[JsonIgnore]
public Optional<string?> From { get; set; }

Property Value

Optional<string>

IncludeClientAssociationFor

Client ID. When set, each returned organization that has an association with this client gains a client object describing it; organizations without one omit the field.

[JsonIgnore]
public Optional<string?> IncludeClientAssociationFor { get; set; }

Property Value

Optional<string>

IncludeTotals

Return results inside an object that contains the total result count (true) or as a direct array of results (false, default).

[JsonIgnore]
public Optional<bool?> IncludeTotals { get; set; }

Property Value

Optional<bool?>

Sort

Field to sort by. Use field:order where order is 1 for ascending and -1 for descending. e.g. created_at:1. We currently support sorting by the following fields: name, display_name and created_at.

[JsonIgnore]
public Optional<string?> Sort { get; set; }

Property Value

Optional<string>

Take

Number of results per page. Defaults to 50.

[JsonIgnore]
public Optional<int?> Take { get; set; }

Property Value

Optional<int?>

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.