Auth0.Management.Clients (Auth0Api v1.4.0) View Source
Documentation for Auth0 Management API of Clients.
endpoint
/api/v2/clients /api/v2/clients/{id} /api/v2/clients/{id}/rotate-secret
Link to this section Summary
Functions
Create a client.
Delete a client.
Get a client.
Get clients.
Rotate a client secret.
Update a client.
Link to this section Types
Specs
config() :: Auth0.Config.t()
Specs
Specs
id() :: String.t()
Specs
response_body() :: String.t()
Link to this section Functions
Specs
create(Auth0.Management.Clients.Create.Params.t() | map(), config()) :: {:ok, Auth0.Entity.Client.t(), response_body()} | error()
Create a client.
see
https://auth0.com/docs/api/management/v2/#!/Clients/post_clients
Specs
delete(id(), config()) :: {:ok, String.t(), response_body()} | error()
Delete a client.
see
https://auth0.com/docs/api/management/v2/#!/Clients/delete_clients_by_id
Specs
get(id(), Auth0.Management.Clients.Get.Params.t() | map(), config()) :: {:ok, Auth0.Entity.Client.t(), response_body()} | error()
Get a client.
see
https://auth0.com/docs/api/management/v2/#!/Clients/get_clients_by_id
Specs
list(Auth0.Management.Clients.List.Params.t() | map(), config()) :: {:ok, Auth0.Entity.Clients.t(), response_body()} | error()
Get clients.
see
https://auth0.com/docs/api/management/v2/#!/Clients/get_clients
Specs
rotate_secret(id(), config()) :: {:ok, Auth0.Entity.Client.t(), response_body()} | error()
Rotate a client secret.
see
https://auth0.com/docs/api/management/v2/#!/Clients/post_rotate_secret
Specs
update(id(), Auth0.Management.Clients.Patch.Params.t() | map(), config()) :: {:ok, Auth0.Entity.Client.t(), response_body()} | error()
Update a client.
see
https://auth0.com/docs/api/management/v2/#!/Clients/patch_clients_by_id