사용자 조회

Get User

GET https://api.talkplus.io/v1.4/api/users/:userId

사용자 정보를 조회합니다.

Path Parameters

NameTypeDescription

userId*

string

Headers

NameTypeDescription

api-key*

string

App API key

app-id*

string

App ID

{
  "user": {
    "id": "user123",
    "username": "john",
    "profileImageUrl": "http://cnd.test.com/123.jpg",
    "disablePushNotification": false,
    "data": {
      "someMetaKey1": "someMetaValue1",
      "someMetaKey2": "someMetaValue2"
    },
    "updatedAt": 1583924400,
    "createdAt": 1583921400
  }
}

Last updated