Python
from dub import Dub with Dub( token="DUB_API_KEY", ) as d_client: res = d_client.tags.create() assert res is not None # Handle response print(res)
{ "id": "<string>", "name": "<string>", "color": "red" }
Create a new tag for the authenticated workspace.
Default authentication mechanism
The created tag
The response is of type object.
object