Get club room join link

POST https://live-services.trackmania.nadeo.live/api/token/club/{clubId}/room/{activityId}/join

Headers:


Path parameters:

  • {clubId} integer The ID of the club the room belongs to *
  • {activityId} integer The activity ID of the room to be requested *

Gets a join link for a club room.


Remarks:

  • If the requested room is inactive, using this endpoint will start it. joinLink will be an empty string while the room isn't ready.

Example request:

POST https://live-services.trackmania.nadeo.live/api/token/club/25/room/381929/join

Example response:

{
  "starting": false,
  "joinLink": "#qjoin=fKw5ovkrSCGub82AdaoxCA"
}

If the requested room has been deactivated in the club, the response will contain an error:

[
  "roomServer:error-NoServerAvailable"
]

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

[
  "activity:error-notFound"
]

If the requested room is private and the authenticated account is not a member of the club, the response will contain an error:

[
  "clubMemberRole:error-notMember"
]