Method: OryClient::IdentityApi#get_identity
- Defined in:
- lib/ory-client/api/identity_api.rb
#get_identity(id, opts = {}) ⇒ Identity
Get an Identity Return an [identity](www.ory.sh/docs/kratos/concepts/identity-user-model) by its ID. You can optionally include credentials (e.g. social sign in connections) in the response by using the ‘include_credential` query parameter.
610 611 612 613 |
# File 'lib/ory-client/api/identity_api.rb', line 610 def get_identity(id, opts = {}) data, _status_code, _headers = get_identity_with_http_info(id, opts) data end |