Headers:
-
Authorization: nadeo_v1 t={token}An access token for theNadeoLiveServicesaudience
Service provided by Openplanet
Get club pending member requests
GET
https://live-services.trackmania.nadeo.live/api/token/club/{clubId}/member/request?length={length}&offset={offset}
Headers:
Authorization: nadeo_v1 t={token}
An access token for the NadeoLiveServices audience
Path parameters:
{clubId}
string
The club's ID
*
Query parameters:
{length}
integer
The number of member requests to retrieve
*
{offset}
integer
The number of member requests to skip
*
Gets a list of pending member requests for a club.
Remarks:
"private-open". For other privacy settings, the endpoint will return an empty list.Example request:
GET https://live-services.trackmania.nadeo.live/api/token/club/354/member/request?offset=0&length=3
Example response:
{
"clubMemberList": [
{
"creationTimestamp": 1747349376,
"accountId": "49745547-c2c6-4800-8860-2471744fb1f7",
"clubId": 354,
"moderator": false,
"vip": false,
"hasFeatured": false,
"useTag": false,
"pin": false,
"role": "Apply"
},
{
"creationTimestamp": 1748780844,
"accountId": "860ecb27-7e4b-4275-a0ad-578d99a87a55",
"clubId": 354,
"moderator": false,
"vip": false,
"hasFeatured": false,
"useTag": false,
"pin": false,
"role": "Apply"
},
{
"creationTimestamp": 1750991529,
"accountId": "cbca399b-0f87-42fe-bd12-a51a843050fb",
"clubId": 354,
"moderator": false,
"vip": false,
"hasFeatured": false,
"useTag": false,
"pin": false,
"role": "Apply"
}
],
"maxPage": 10,
"itemCount": 28
}
If the club does not exist or support requests, the response will contain an empty list of pending member requests:
{
"clubMemberList": [],
"maxPage": 0,
"itemCount": 0
}