Add a tag to a chart
To add a tag, POST
an empty body to this endpoint:
- Text
- PHP
- C#
- Java
- Python
- Ruby
- Javascript
- Go
POST https://api-{region}.seatsio.net/charts/{chartKey}/tags/{tag}
$seatsioClient->charts->addTag("4250fffc-e41f-c7cb-986a-2c5e728b8c28", "tag1");
await Client.Charts.AddTagAsync("4250fffc-e41f-c7cb-986a-2c5e728b8c28", "tag1");
client.charts.addTag("4250fffc-e41f-c7cb-986a-2c5e728b8c28", "tag1");
client.charts.add_tag("749b9650-24fb-11e7-93ae-92361f002671", "tag1")
client.charts.add_tag("749b9650-24fb-11e7-93ae-92361f002671", "tag1")
await client.charts.addTag('chartKey', 'tag1');
err := client.Charts.AddTag("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 POST
Response
204 - No Content