Users
Trusted Server API References for User Management Service
Last updated
Trusted Server API References for User Management Service
Last updated
GET /server/services/user/{userId} HTTP/1.1
Host:
Accept: */*
{
"row": {
"id": 1,
"name": "text",
"email": "text",
"phoneNumber": "text",
"image": "text",
"username": "text",
"steamId": "text",
"steamAppId": "text",
"label": "text",
"tags": "text",
"isBan": true,
"isTester": true,
"isGuest": true,
"googleToken": "text",
"fcmId": "text",
"firstLogin": "2025-12-19T23:45:34.322Z",
"lastLogin": "2025-12-19T23:45:34.322Z"
}
}PUT /server/services/user/{userId} HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 123
{
"data": {
"name": "text",
"email": "text",
"phone_number": "text",
"image": "text",
"username": "text",
"label": "text",
"tags": "text"
}
}{
"list": [
{
"id": 1,
"name": "text",
"email": "text",
"phoneNumber": "text",
"image": "text",
"username": "text",
"steamId": "text",
"steamAppId": "text",
"label": "text",
"tags": "text",
"isBan": true,
"isTester": true,
"isGuest": true,
"googleToken": "text",
"fcmId": "text",
"firstLogin": "2025-12-19T23:45:34.322Z",
"lastLogin": "2025-12-19T23:45:34.322Z"
}
],
"totalCount": 1
}GET /server/services/user/steam/{steamId} HTTP/1.1
Host:
Accept: */*
{
"row": {
"id": 1,
"name": "text",
"email": "text",
"phoneNumber": "text",
"image": "text",
"username": "text",
"steamId": "text",
"steamAppId": "text",
"label": "text",
"tags": "text",
"isBan": true,
"isTester": true,
"isGuest": true,
"googleToken": "text",
"fcmId": "text",
"firstLogin": "2025-12-19T23:45:34.322Z",
"lastLogin": "2025-12-19T23:45:34.322Z"
}
}POST /server/services/user/find HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 44
{
"query": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}{
"list": [
{
"id": 1,
"name": "text",
"email": "text",
"phoneNumber": "text",
"image": "text",
"username": "text",
"steamId": "text",
"steamAppId": "text",
"label": "text",
"tags": "text",
"isBan": true,
"isTester": true,
"isGuest": true,
"googleToken": "text",
"fcmId": "text",
"firstLogin": "2025-12-19T23:45:34.322Z",
"lastLogin": "2025-12-19T23:45:34.322Z"
}
],
"totalCount": 1
}