curl "https://sportplaces.api.decathlon.com/api/v1/places/8b1e3027-e438-42c2-92ab-5ebd23f68d54/activities/160/tags"
JSON response:
[
"free"
]
Retrieves a list of tags that have been applied to a sporting activity at a place
GET https://sportplaces.api.decathlon.com/api/v1/places/PLACE_UUID/tags
curl -X POST \
https://sportplaces.api.decathlon.com/api/v1/places/8b1e3027-e438-42c2-92ab-5ebd23f68d54/activities/160/tags \
-H 'Authorization: Bearer XXXXXX' \
-d '{
"slug": "lessons"
}'
JSON response:
[
"free",
"lessons"
]
Adds a new tag to a sporting activity at a specified place. This tag MUST be permitted on a sport.
POST https://sportplaces.api.decathlon.com/api/v1/places/PLACE_UUID/tags
curl -X DELETE \
https://sportplaces.api.decathlon.com/api/v1/places/8b1e3027-e438-42c2-92ab-5ebd23f68d54/activities/160/tags/lessons \
-H 'Authorization: Bearer XXXXXX'
JSON response:
{
"message": "Deleted"
}
Removes a specific tag from a sporting activity at a location.
DELETE https://sportplaces.api.decathlon.com/api/v1/places/PLACE_UUID/activities/SPORT_ID/tags/lessons