Auth0.Management.Actions (Auth0Api v1.4.0) View Source
Documentation for Auth0 Management API of Actions.
endpoint
- /api/v2/actions/actions
- /api/v2/actions/status
- /api/v2/actions/triggers
- /api/v2/actions/actions/{id}
- /api/v2/actions/executions/{id}
- /api/v2/actions/actions/{actionId}/versions
- /api/v2/actions/triggers/{triggerId}/bindings
- /api/v2/actions/actions/{actionId}/versions/{id}
- /api/v2/actions/actions/{id}/test
- /api/v2/actions/actions/{id}/deploy
- /api/v2/actions/actions/{actionId}/versions/{id}/deploy
Link to this section Summary
Functions
Create an action.
Delete an action.
Deploy an action.
Get an action.
Get trigger bindings.
Get an execution.
Get actions service status.
Get triggers.
Get a specific version of an action.
Get actions.
Get an action's versions.
Roll back to a previous action version.
Test an Action.
Update an action.
Update trigger bindings.
Link to this section Types
Specs
action_id() :: String.t()
Specs
config() :: Auth0.Config.t()
Specs
Specs
id() :: String.t()
Specs
response_body() :: String.t()
Specs
trigger_id() :: String.t()
Link to this section Functions
Specs
create(Auth0.Management.Actions.Create.Params.t() | map(), config()) :: {:ok, Auth0.Entity.Action.t(), response_body()} | error()
Create an action.
see
https://auth0.com/docs/api/management/v2/#!/Actions/post_action
Specs
delete(id(), Auth0.Management.Actions.Delete.Params.t() | map(), config()) :: {:ok, String.t(), response_body()} | error()
Delete an action.
see
https://auth0.com/docs/api/management/v2/#!/Actions/delete_action
Specs
deploy(id(), config()) :: {:ok, Auth0.Entity.ActionVersion.t(), response_body()} | error()
Deploy an action.
see
https://auth0.com/docs/api/management/v2/#!/Actions/post_deploy_action
Specs
get(id(), config()) :: {:ok, Auth0.Entity.Action.t(), response_body()} | error()
Get an action.
see
https://auth0.com/docs/api/management/v2/#!/Actions/get_action
Specs
get_bindings( trigger_id(), Auth0.Management.Actions.Triggers.Bindings.List.Params.t() | map(), config() ) :: {:ok, Auth0.Entity.ActionTriggerBindings.t(), response_body()} | error()
Get trigger bindings.
see
https://auth0.com/docs/api/management/v2/#!/Actions/get_bindings
Specs
get_execution(id(), config()) :: {:ok, Auth0.Entity.ActionExecution.t(), response_body()} | error()
Get an execution.
see
https://auth0.com/docs/api/management/v2/#!/Actions/get_execution
Specs
get_status(config()) :: {:ok, Auth0.Entity.ActionStatus.t(), response_body()} | error()
Get actions service status.
see
https://auth0.com/docs/api/management/v2/#!/Actions/get_service_status
Specs
get_triggers(config()) :: {:ok, Auth0.Entity.ActionTriggers.t(), response_body()} | error()
Get triggers.
see
https://auth0.com/docs/api/management/v2/#!/Actions/get_triggers
Specs
get_version(action_id(), id(), config()) :: {:ok, Auth0.Entity.ActionVersion.t(), response_body()} | error()
Get a specific version of an action.
see
https://auth0.com/docs/api/management/v2/#!/Actions/get_action_version
Specs
list(Auth0.Management.Actions.List.Params.t() | map(), config()) :: {:ok, Auth0.Entity.Actions.t(), response_body()} | error()
Get actions.
see
https://auth0.com/docs/api/management/v2/#!/Actions/get_actions
Specs
list_versions( action_id(), Auth0.Management.Actions.Versions.List.Params.t() | map(), config() ) :: {:ok, Auth0.Entity.ActionVersions.t(), response_body()} | error()
Get an action's versions.
see
https://auth0.com/docs/api/management/v2/#!/Actions/get_action_versions
Specs
rollback_version( action_id(), id(), Auth0.Management.Actions.Versions.Rollback.Params.t() | map(), config() ) :: {:ok, Auth0.Entity.ActionVersion.t(), response_body()} | error()
Roll back to a previous action version.
see
https://auth0.com/docs/api/management/v2/#!/Actions/post_deploy_draft_version
Specs
test(id(), Auth0.Management.Actions.Test.Params.t() | map(), config()) :: {:ok, Auth0.Entity.ActionTest.t(), response_body()} | error()
Test an Action.
see
https://auth0.com/docs/api/management/v2/#!/Actions/post_test_action
Specs
update(id(), Auth0.Management.Actions.Patch.Params.t() | map(), config()) :: {:ok, Auth0.Entity.Action.t(), response_body()} | error()
Update an action.
see
https://auth0.com/docs/api/management/v2/#!/Actions/patch_action
Specs
update_bindings( trigger_id(), Auth0.Management.Actions.Triggers.Bindings.Patch.Params.t() | map(), config() ) :: {:ok, Auth0.Entity.ActionTriggerBindings.t(), response_body()} | error()
Update trigger bindings.
see
https://auth0.com/docs/api/management/v2/#!/Actions/patch_bindings