Query parameters:
-
{accountIdList}
(string) A comma-separated list of account IDs *
Service provided by Openplanet
Get player club tags
Audience: NadeoServices
GET
https://prod.trackmania.core.nadeo.online/accounts/clubTags/?accountIdList={accountIdList}
Query parameters:
{accountIdList}
(string)
A comma-separated list of account IDs
*
Gets player club tags from account IDs.
Remarks:
401
errors using a dedicated server account, switch to using a Ubisoft account.414
error if the request URI length is 8220 characters or more (corresponding to just over 200 account IDs, depending on how you encode the URI).accountIdList
query parameter also supports the array format accountIdList[]={accountID}
. The examples below show how to request club tags for multiple accounts using this approach.Example request:
GET https://prod.trackmania.core.nadeo.online/accounts/clubTags/?accountIdList=5b4d42f4-c2de-407d-b367-cbff3fe817bc,45e5e4bc-d237-4e6e-8258-b60e8dc0c76a
Example response:
[
{
"accountId": "45e5e4bc-d237-4e6e-8258-b60e8dc0c76a",
"clubTag": "$A00X",
"timestamp": "2024-03-30T05:54:17+00:00"
},
{
"accountId": "5b4d42f4-c2de-407d-b367-cbff3fe817bc",
"clubTag": "$F05TSH",
"timestamp": "2024-11-21T18:30:18+00:00"
}
]
For multiple accounts, you may also send the accountID
values as follows:
GET https://prod.trackmania.core.nadeo.online/accounts/clubTags/?accountIdList[]=5b4d42f4-c2de-407d-b367-cbff3fe817bc&accountIdList[]=45e5e4bc-d237-4e6e-8258-b60e8dc0c76a
If an accountId
is invalid, the response will contain an error message:
{
"code": "C-AA-00-03",
"correlation_id": "8646a82e689541aff09f34244d879d88",
"message": "There was a validation error.",
"info": {
"accountIdList": "Invalid account id."
}
}