pydo.tags.delete()
Generated on 24 Apr 2025
from pydo
version
v0.10.0
Description
A tag can be deleted by sending a DELETE
request to /v2/tags/$TAG_NAME
. Deleting a tag also untags all the resources that have previously been tagged by the Tag
Parameters
Name | Type | Required | Description | Default Value |
---|---|---|---|---|
tag_id |
string | True | The name of the tag. Tags may contain letters, numbers, colons, dashes, and underscores. There is a limit of 255 characters per tag. |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
resp = client.tags.delete(tag_id="awesome")
More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.