Join a club

POST https://live-services.trackmania.nadeo.live/api/token/club/{clubId}/member/create

Headers:


Path parameters:

  • {clubId} integer The ID of the club the player will join *

Join a club as a new member.


Remarks:

  • This endpoint is only useful with tokens authenticated through Ubisoft user accounts (as opposed to dedicated server accounts).
  • If the club is private, but accepts requests, the role field in the response body will be "Apply".
  • If the current authenticated account has already joined the club, the endpoint will return the member information.
  • To leave a club you have joined, you can use the Delete club member Live endpoint.

Example request:

POST https://live-services.trackmania.nadeo.live/api/token/club/103034/member/create

Example response:

{
  "creationTimestamp": 1771819382,
  "accountId": "69f31664-4252-48e0-a433-024c49caee8c",
  "clubId": 103034,
  "moderator": false,
  "vip": false,
  "hasFeatured": false,
  "useTag": false,
  "pin": false,
  "role": "Member"
}

If the club does not exist, the response will contain an error:

[
  "club:error-notFound"
]

If the club is private, the response will contain an error:

[
  "clubState:error-wrongState"
]