post
https://api.7digital.com/1.2/playlists/tags
Save the visibility and order of tags against a playlist. Any previous order is overwritten.

\ Example request
POST https://api.7digital.com/1.2/playlists/tags?country=GB&oauth_consumer_key=YOUR_KEY_HERE&oauth_token=...The body of the request should be structured as follows:
{
"tags": [
{
"name": "mytag1"
},
{
"name": "mytag2"
}
]
}Example response
{
"shopId": 34,
"tags": [{
"name": "Tag1",
"hidden": true
}, {
"name": "Tag2",
"hidden": false
}]
}
