Get club pending member requests

GET https://live-services.trackmania.nadeo.live/api/token/club/{clubId}/member/request?length={length}&offset={offset}

Headers:


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:

  • This endpoint is only useful for clubs with their privacy level set to "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
}