Retrieve a User

Retrieve user information using the issued authentication token.

For Business plans and higher, specify the eml parameter to retrieve information about other users within your organization.

This API is available for Personal plans and higher.

GET

/api/user/v1/get

HTTP Header
X-Access-Token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...

No Request Parameters

{
    "code": 0,
    "message": "",
    "result": {
        "eml": "your@gmail.com",
        "nm": "Tester",
        "planNm": "BUSINESS",
        "planExpires": "2025-12-31",
        "locale": "en_US",
        "timeZone": "America/New_York",
        "emlVerifiedYn": "Y",
        "twoAuthYn": "N",
        "sinYmdt": "2025-10-08 03:36:28",
        "regYmdt": "2019-08-13 12:13:01"
    }
}

Response Parameters

codeinteger
Response code: 0 = Success, any other value = Error
messagestring
Response message. If the response code is not 0, an error-related message is returned.
resultobject
eml string
User email.
nm string
User name.
planNm string
Current subscription plan.
planExpires date
Plan expiration date. Expires at 00:00 based on Korea Standard Time (UTC +09:00).
locale string
Language and region of the user account.
timeZone string
Time zone.
Language, region, and time zone can be changed on the [Settings → Profile] page.
emlVerifiedYn string
Default:N
Enum:
YN
Email verification status.
Y: Verified, N: Not verified.
twoAuthYn string
Default:N
Enum:
YN
Two-factor authentication usage.
Y: Enabled, N: Disabled.
sinYmdt datetime
Last login date and time.
regYmdt datetime
Account creation date and time.