사용자 목록 조회

Get Users

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

사용자 목록을 조회합니다.

Query Parameters

NameTypeDescription

lastUserId

string

Last user ID to query from (use for pagination)

Headers

NameTypeDescription

content-type

string

application/json

api-key*

string

App API key

app-id*

string

App ID

{
  "users": [
    {
      "id": "user123",
      "username": "user123",
      "profileImageUrl": "http://cnd.test.com/123.jpg",
      "disablePushNotification": false,
      "data": {
        "someMetaKey1": "someMetaValue1",
        "someMetaKey2": "someMetaValue2"
      },
      "updatedAt": 1603184094285,
      "createdAt": 1603184094285
    },
    {
      "id": "user456",
      "username": "user456",
      "profileImageUrl": "http://cnd.test.com/456.jpg",
      "disablePushNotification": false,
      "data": {},
      "updatedAt": 1603158362319,
      "createdAt": 1602764876815
    }
  ],
  "hasNext": false
}

Last updated