View Users
Get Users
GET
https://api.talkplus.io/v1.4/api/users
Get list of users for given app
Query Parameters
Name
Type
Description
lastUserId
string
Last user ID to query from (use for pagination)
Headers
Name
Type
Description
content-type
string
application/json
app-id*
string
App ID
api-key*
string
App API key
{
"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