The listing of favorite sports returns the sport identifier like described in ddfs.
The response is simply formatted as a json list of objects.
This HTTP API is defined like this:
Following an example of call to the get endpoint with curl tools:
curl --request GET
--url https://api-global.preprod.decathlon.net/sports_practices
--header 'authorization: Bearer <jwt_decathlon_login>
--header 'x-api-key: <x-api-key>'
Example of response returned by the API
[
{
"sport_id": 84
}
]