Add favorite map

POST https://prod.trackmania.core.nadeo.online/maps/favorites

Headers:


Body parameters:

  • {mapUid} string The UID of the map *

The request body contains the map to add, identified by its mapUid:

{
  "mapUid": mapUid
}

Adds a map to your authenticated account's favorites.


Remarks:

  • This endpoint is only useful with tokens authenticated through Ubisoft user accounts (as opposed to dedicated server accounts).
  • This endpoint serves the same purpose as the Live API's Add favorite map endpoint, but the request format is different.

Example request:

POST https://prod.trackmania.core.nadeo.online/maps/favorites
{
  "mapUid": "KRelvYHRjEQoqnkJ_Th8FLKzTsg"
}

Example response:

null

Both successful and unsuccessful responses (including requests for maps that don't exist) return a 200 response code.

An invalid mapUid results in a 400 response code with an error object in the response body.