Create a Tag#
Let's assume we want to create a new tag with the following properties:
- Name: test_tag
- Color:
rgb(100, 216, 180)
This is what the creation would look like in the TickTick app:

This is what the pyticktick
equivalent would look like:
import json
from pyticktick import Client
client = Client()
resp = client.post_tag_v2(
data={"add": [{"label": "test_tag", "color": "rgb(100, 216, 180)"}]},
)
print(json.dumps(resp.model_dump(mode="json"), indent=4))
will return:
{
"id2error": {},
"id2etag": {
"test_tag": "l1y6w0zu"
}
}
import json
from pyticktick import Client
from pyticktick.models.v2 import PostBatchTagV2, CreateTagV2
client = Client()
resp = client.post_tag_v2(
data=PostBatchTagV2(
add=[CreateTagV2(label="test_tag", color="rgb(100, 216, 180)")],
)
)
print(json.dumps(resp.model_dump(mode="json"), indent=4))
will return:
{
"id2error": {},
"id2etag": {
"test_tag": "l1y6w0zu"
}
}
Here is the end result in the TickTick app:
