Table of Contents

Class Action

Namespace
Auth0.ManagementApi.Models.Actions
Assembly
Auth0.ManagementApi.dll

Represents an action in Auth0

public class Action : ActionBase
Inheritance
Action
Inherited Members

Properties

AllChangesDeployed

True if all of an Action's contents have been deployed.

[JsonProperty("all_changes_deployed")]
public bool AllChangesDeployed { get; set; }

Property Value

bool

BuiltAt

The time when this action was built successfully.

[JsonProperty("built_at")]
public DateTime BuiltAt { get; set; }

Property Value

DateTime

CreatedAt

The time when this action was created.

[JsonProperty("created_at")]
public DateTime CreatedAt { get; set; }

Property Value

DateTime

DeployedVersion

The version of the action that is currently deployed.

[JsonProperty("deployed_version")]
public ActionVersion DeployedVersion { get; set; }

Property Value

ActionVersion

Id

The unique ID of the action.

[JsonProperty("id")]
public string Id { get; set; }

Property Value

string

InstalledIntegrationId

The fk reference to InstalledIntegration entity.

[JsonProperty("installed_integration_id")]
public string InstalledIntegrationId { get; set; }

Property Value

string

Integration

Integration defines a self-contained functioning unit which partners publish. A partner may create one or many of these integrations.

[JsonProperty("integration")]
public Integration Integration { get; set; }

Property Value

Integration

Status

The build status of this action.

[JsonProperty("status")]
public string Status { get; set; }

Property Value

string

SupportedTriggers

The list of triggers that this action supports.

[JsonProperty("supported_triggers")]
public IList<ActionSupportedTrigger> SupportedTriggers { get; set; }

Property Value

IList<ActionSupportedTrigger>

UpdatedAt

The time when this action was updated.

[JsonProperty("updated_at")]
public DateTime UpdatedAt { get; set; }

Property Value

DateTime