Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface UpdateActionResponseContent

    interface UpdateActionResponseContent {
        id?: string;
        name?: string;
        supported_triggers?: ActionTrigger[];
        all_changes_deployed?: boolean;
        created_at?: string;
        updated_at?: string;
        code?: string;
        dependencies?: ActionVersionDependency[];
        runtime?: string;
        secrets?: ActionSecretResponse[];
        deployed_version?: ActionDeployedVersion;
        installed_integration_id?: string;
        integration?: Integration;
        status?: Management.ActionBuildStatusEnum;
        built_at?: string;
        deploy?: boolean;
    }
    Index

    Properties

    id?: string

    The unique ID of the action.

    name?: string

    The name of an action.

    supported_triggers?: ActionTrigger[]

    The list of triggers that this action supports. At this time, an action can only target a single trigger at a time.

    all_changes_deployed?: boolean

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

    created_at?: string

    The time when this action was created.

    updated_at?: string

    The time when this action was updated.

    code?: string

    The source code of the action.

    dependencies?: ActionVersionDependency[]

    The list of third party npm modules, and their versions, that this action depends on.

    runtime?: string

    The Node runtime. For example: node22, defaults to node22

    The list of secrets that are included in an action or a version of an action.

    deployed_version?: ActionDeployedVersion
    installed_integration_id?: string

    installed_integration_id is the fk reference to the InstalledIntegration entity.

    integration?: Integration
    built_at?: string

    The time when this action was built successfully.

    deploy?: boolean

    True if the action should be deployed after creation.