class Stytch::Users
def get(
The `untrusted_metadata` field contains an arbitrary JSON object of application-specific data. Untrusted metadata can be edited by end users directly via the SDK, and **cannot be used to store critical information.** See the [Metadata](https://stytch.com/docs/api/metadata) reference for complete field behavior details.
untrusted_metadata::
The type of this field is nilable +object+.
The `trusted_metadata` field contains an arbitrary JSON object of application-specific data. See the [Metadata](https://stytch.com/docs/api/metadata) reference for complete field behavior details.
trusted_metadata::
The type of this field is nilable +Password+ (+object+).
The password object is returned for users with a password.
password::
The type of this field is nilable +String+.
The timestamp of the User's creation. Values conform to the RFC 3339 standard and are expressed in UTC, e.g. `2021-12-29T12:33:09Z`.
created_at::
The type of this field is nilable +Name+ (+object+).
The name of the User. Each field in the `name` object is optional.
name::
The type of this field is +Integer+.
The HTTP status code of the response. Stytch follows standard HTTP response status code patterns, e.g. 2XX values equate to success, 3XX values are redirects, 4XX are client errors, and 5XX are server errors.
status_code::
The type of this field is list of +BiometricRegistration+ (+object+).
An array that contains a list of all biometric registrations for a given User in the Stytch API.
biometric_registrations::
The type of this field is list of +CryptoWallet+ (+object+).
An array contains a list of all crypto wallets for a given User in the Stytch API.
crypto_wallets::
The type of this field is list of +TOTP+ (+object+).
An array containing a list of all TOTP instances for a given User in the Stytch API.
totps::
The type of this field is list of +OAuthProvider+ (+object+).
An array of OAuth `provider` objects linked to the User.
providers::
The type of this field is list of +WebAuthnRegistration+ (+object+).
An array that contains a list of all Passkey or WebAuthn registrations for a given User in the Stytch API.
webauthn_registrations::
The type of this field is list of +PhoneNumber+ (+object+).
An array of phone number objects linked to the User.
phone_numbers::
The type of this field is +String+.
The status of the User. The possible values are `pending` and `active`.
status::
The type of this field is list of +Email+ (+object+).
An array of email objects for the User.
emails::
The type of this field is +String+.
The unique ID of the returned User.
user_id::
The type of this field is +String+.
Globally unique UUID that is returned with every API call. This value is important to log for debugging purposes; we may ask for this value to help identify a specific API call when helping you debug an issue.
request_id::
An object with the following fields:
== Returns:
The type of this field is +String+.
The unique ID of a specific User.
user_id::
== Parameters:
Get information about a specific User.
def get( user_id: ) headers = {} query_params = {} request = request_with_query_params("/v1/users/#{user_id}", query_params) get_request(request, headers) end