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
{
"userIds": [
"string"
]
}
Request Code 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 {
"{userId}": {
"joinDate": "2019-08-24T14:15:22Z",
"lastOnline": "2019-08-24T14:15:22Z"
}
}
Modified at 2024-06-10 14:16:22