Users
users
Methods
post/v1/users
Create a new user with linked accounts. Optionally pre-generate embedded wallets for the user.
Response fields
Request example
200Example
Create Custom Metadata -> { custom_metadata }
post/v1/users/{user_id}/custom_metadata
Adds custom metadata to a user by user ID.
path Parameters
user_id: string
ID of the user.
Response fields
custom_metadata: Record<string, string | number | boolean>
Request example
200Example
Delete User ->
delete/v1/users/{user_id}
Delete a user by user ID.
get/v1/users/{user_id}
Get a user by user ID.
post/v1/users/email/address
Looks up a user by their email address.
post/v1/users/custom_auth/id
Looks up a user by their custom auth ID.
post/v1/users/wallet/address
Looks up a user by their wallet address.
get/v1/users
Get all users in your app.
get/v1/users/{user_id}
Get a user by user ID.
Domain types
User = { id, created_at, has_accepted_terms, 4 more... }