v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
Me

Get My User Account

Returns the user account for the user identified in the token of the request.

get/v3/users/me

Response

A get action response of a single user.

idstring uuid

The User ID.

emailstring email

The email registered to the user.

full_namestring

The User's full name.

preferred_namestring

The User's preferred name.

activeboolean

Returns True if a user has verified their email address.

inferred_regionstring

The Konnect region closest to the user's IP address. This property might only be set for users on signup through Konnect’s build-in native authentication.

created_atstring date-time

The time stamp for the date the account was registered.

updated_atstring date-time

A Unix timestamp representation of the most recent change to the User account.

Example response

{
  "id": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
  "email": "user@email.com",
  "full_name": "Test User",
  "preferred_name": "test",
  "active": true,
  "inferred_region": "us",
  "created_at": "2022-02-07T17:46:57.52Z",
  "updated_at": "2022-10-08T17:00:00.52Z"
}