Remove a tag from a chart
- Text
- PHP
- C#
- Java
- Python
- Ruby
- Javascript
- Go
DELETE https://api-{region}.seatsio.net/charts/{chartKey}/tags/{chartName}
$seatsioClient->charts->removeTag("4250fffc-e41f-c7cb-986a-2c5e728b8c28", "tag1");
await Client.Charts.RemoveTagAsync("4250fffc-e41f-c7cb-986a-2c5e728b8c28", "tag1");
client.charts.removeTag("4250fffc-e41f-c7cb-986a-2c5e728b8c28", "tag1");
client.charts.remove_tag("749b9650-24fb-11e7-93ae-92361f002671", "tag1")
client.charts.remove_tag("749b9650-24fb-11e7-93ae-92361f002671", "tag1")
await client.charts.removeTag('chartKey', 'tag1');
err := client.Charts.RemoveTag("chartKey", "tag1")
Tip
Keep in mind that your tag needs to be URI encoded!
Example request
curl https://api-{region}.seatsio.net/charts/4250fffc-e41f-c7cb-986a-2c5e728b8c28/tags/tag1 \
-u aSecretKey: -X DELETE
Response
204 - No Content
404 - Not Found: when the chart did not contain the tag you specified.