Table of Contents

Class ListActionsRequestParameters

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

Properties

ActionName

The name of the action to retrieve.

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

Property Value

Optional<string>

Deployed

Optional filter to only retrieve actions that are deployed.

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

Property Value

Optional<bool?>

Installed

Optional. When true, return only installed actions. When false, return only custom actions. Returns all actions by default.

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

Property Value

Optional<bool?>

Page

Use this field to request a specific page of the list results.

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

Property Value

Optional<int?>

PerPage

The maximum number of results to be returned by the server in single response. 20 by default

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

Property Value

Optional<int?>

TriggerId

An actions extensibility point.

[JsonIgnore]
public Optional<ActionTriggerTypeEnum?> TriggerId { get; set; }

Property Value

Optional<ActionTriggerTypeEnum?>

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.