Get club asset activities

Audience: NadeoLiveServices

GET https://live-services.trackmania.nadeo.live/api/token/club/bucket/{bucketType}/all?length={length}&offset={offset}

Path parameters:

  • {bucketType} (string) The type of assets to retrieve (see below for accepted values) *

Query parameters:

  • {length} (integer) The number of assets to retrieve *
  • {offset} (integer) The number of assets to skip *

Gets a list of club-related asset activities (where players can upload maps, skins and items).


Remarks:

  • There are three types of asset activities you can retrieve: map-upload, skin-upload and item-upload. These relate to club campaign maps, club skins and club items, respectively.

Example request:

GET https://live-services.trackmania.nadeo.live/api/token/club/bucket/item-upload/all?length=3&offset=0

Example response:

{
  "clubBucketList": [
    {
      "type": "item-upload",
      "bucketItemList": [

      ],
      "bucketItemCount": 1,
      "popularityLevel": 0,
      "popularityValue": 0,
      "mediaUrl": "https://trackmania-prod-nls-file-store-s3.cdn.ubi.com/club/card/31644/62e710715faaf.png?updateTimestamp=1659310196.png",
      "creationTimestamp": 1659310192,
      "id": 305333,
      "clubId": 31644,
      "clubName": "TMA.gg",
      "name": "WTMT"
    },
    {
      "type": "item-upload",
      "bucketItemList": [

      ],
      "bucketItemCount": 1,
      "popularityLevel": 0,
      "popularityValue": 0,
      "mediaUrl": "https://trackmania-prod-nls-file-store-s3.cdn.ubi.com/club/card/44367/62d83eaf92c2c.png?updateTimestamp=1658338994.png",
      "creationTimestamp": 1658338991,
      "id": 301732,
      "clubId": 44367,
      "clubName": "slowpiou items",
      "name": "trackwall roads"
    },
    {
      "type": "item-upload",
      "bucketItemList": [

      ],
      "bucketItemCount": 1,
      "popularityLevel": 0,
      "popularityValue": 0,
      "mediaUrl": "https://trackmania-prod-nls-file-store-s3.cdn.ubi.com/club/card/31644/626629b661e54.png?updateTimestamp=1650862520.png",
      "creationTimestamp": 1650862517,
      "id": 271067,
      "clubId": 31644,
      "clubName": "TMA.gg",
      "name": "DirtRoad_Platform"
    }
  ],
  "maxPage": 16,
  "itemCount": 47
}

Invalid bucket types will result in an error in the response:

[
  "type:error-inArray"
]