Supabase.GoTrue.Admin (supabase_gotrue v0.4.1)
Admin module for GoTrue. This module provides functions to interact with the GoTrue admin API, like signing out a user, inviting a user, and generating a link.
You can find more information about the GoTrue admin API at https://supabase.io/docs/reference/javascript/auth-admin-api
Summary
Functions
Creates a user in the GoTrue admin API.
Deletes a user in the GoTrue admin API.
Generates a link for the GoTrue admin API.
Gets a user by ID in the GoTrue admin API.
Invites a user to the GoTrue admin API.
Lists users in the GoTrue admin API.
Signs out a user from the GoTrue admin API.
Updates a user in the GoTrue admin API.
Functions
Creates a user in the GoTrue admin API.
Parameters
client
- TheSupabase
client to use for the request.attrs
- The attributes to use for the user. SeeSupabase.GoTrue.Schemas.AdminUserParams
for more information.
Examples
iex> Supabase.GoTrue.Admin.create_user(pid | client_name, %{})
Deletes a user in the GoTrue admin API.
Parameters
client
- TheSupabase
client to use for the request.user_id
- The ID of the user to delete.opts
- Controls if the user should be soft deleted or not.
Examples
iex> Supabase.GoTrue.Admin.update_user(pid | client_name, "user_id", %{})
Generates a link for the GoTrue admin API.
Parameters
client
- TheSupabase
client to use for the request.attrs
- The attributes to use for the link. SeeSupabase.GoTrue.Schemas.GenerateLink
for more information.
Examples
iex> Supabase.GoTrue.Admin.generate_link(pid | client_name, %{})
Gets a user by ID in the GoTrue admin API.
Parameters
client
- TheSupabase
client to use for the request.user_id
- The ID of the user to get.
Examples
iex> Supabase.GoTrue.Admin.get_user_by_id(pid | client_name, "user_id")
Invites a user to the GoTrue admin API.
Parameters
client
- TheSupabase
client to use for the request.email
- The email of the user to invite.options
- The options to use for the invite. SeeSupabase.GoTrue.Schemas.InviteUserParams
for more information.
Examples
iex> Supabase.GoTrue.Admin.invite_user_by_email(pid | client_name, "john@example.com", %{})
Lists users in the GoTrue admin API.
Parameters
client
- TheSupabase
client to use for the request.params
- The parameters to use for the list. SeeSupabase.GoTrue.Schemas.PaginationParams
for more information.
Examples
iex> Supabase.GoTrue.Admin.list_users(pid | client_name, %{})
Signs out a user from the GoTrue admin API.
Parameters
client
- TheSupabase
client to use for the request.session
- The session to sign out, often retrieved from a sign in function.scope
- The scope to sign out the user from. Can be one ofglobal
,local
, orothers
.
Examples
iex> session = %Session{access_token: "access_token"}
iex> Supabase.GoTrue.Admin.sign_out(pid | client_name, session, "global")
Updates a user in the GoTrue admin API.
Parameters
client
- TheSupabase
client to use for the request.user_id
- The ID of the user to update.attrs
- The attributes to use for the user. SeeSupabase.GoTrue.Schemas.AdminUserParams
for more information.
Examples
iex> Supabase.GoTrue.Admin.update_user(pid | client_name, "user_id", %{})