members
Sorts the member IDs provided by their joinDate
(earliest first) and returns it + lastOnline
. Does not provide any user details.
Request
Body Params application/json
The IDs of the users to sort
{
"userIds": [
"string"
]
}
Request samples
curl --location --request POST 'https://www.guilded.gg/api/teams//members/sort' \
--header 'Content-Type: application/json' \
--data-raw '{
"userIds": [
"string"
]
}'
Responses
application/json Where {userId}
is a value provided in userIds
joinDate
string <date-time>
requiredWhen the member joined their team
lastOnline
string <date-time>
requiredWhen the member was last online
{
"{userId}": {
"joinDate": "2019-08-24T14:15:22Z",
"lastOnline": "2019-08-24T14:15:22Z"
}
}
Modified at 2024-06-10 14:16:22