Skip to content

Get User auth info

You can get all parameters from getAuthInfo method in useUserInfo

Endpoint

/api/v1/partner/auth/verify

Request Parameters

HTTP Method

POST

Body Parameters

Content-Type: application/json

Request example:

json
{ "requestBody": "{\"auth_key\":\"123123123123\",\"platform\":\"telegram\"}"}
ParameterRequiredTypeDefaultDescription
auth_keyYesstringNoneYou can get this parameter from getAuthInfo method in useUserInfo
platformYesstringNoneYou can get this parameter from getAuthInfo method in useUserInfo
addressNostringNoneIf the platform is one of wallet types,you can get this parameter from getAuthInfo method in useUserInfo

Response

Example Response

Success:

json
{
  "code":0,
  "data":{
    "matchId":"123123",
    "platform":"Telegram",
    "platformId": "1111111",
    "platformName": "Telegram",
    "firstName": "Match",
    "lastName": "ID",
    "nickname": "MatchIDdemo",
    "avatarUrl": "https://a.com/1.jpg"
  },
  "message":"successfully"
}

Response Data Parameters

ParameterRequiredTypeDescription
matchIdYesstringUser's id int MatchID
platformYesstringPlatform name(e.g., "evm", "google", "twitter", "telegram").
platformIdYesstringThe id of the user on the corresponding platform(e.g., telegram id, wallet address).
platformNameYesstringPlatform name(e.g., "evm", "google", "twitter", "telegram").
firstNameNostringThe first name of the user on the corresponding platform(e.g., telegram first name).
lastNameNostringThe last name of the user on the corresponding platform(e.g., telegram last name).
nicknameNostringThe nickname of the user on the corresponding platform(e.g., telegram username).
avatarUrlNostringThe avatar url of the user on the corresponding platform(e.g., telegram avatar url).