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
- emlstring
- User email.
- nmstring
- User name.
- planNmstring
- Current subscription plan.
- planExpiresdate
- Plan expiration date.
Expires at 00:00 based on Korea Standard Time (UTC +09:00)
. - localestring
- Language and region of the user account.
- timeZonestring
- Time zone.
Language, region, and time zone can be changed on the [Settings → Profile] page. - emlVerifiedYnstring
- Default:N
- Enum:YN
- Email verification status.
Y: Verified, N: Not verified. - twoAuthYnstring
- Default:N
- Enum:YN
- Two-factor authentication usage.
Y: Enabled, N: Disabled. - sinYmdtdatetime
- Last login date and time.
- regYmdtdatetime
- Account creation date and time.