List, Add, and Remove Image Tags
https://api.roboflow.com/:workspace/:project/images/:image_id/tagscurl -X POST "https://api.roboflow.com/my-workspace/my-project-name/images/image-id/tags?api_key=$ROBOFLOW_API_KEY" \
-H 'Content-Type: application/json' \
--data \
'{
"operation": "add",
"tags": "image_tag_test"
}'{
// // options are ["add", "remove", "set"]
"operation": string,
// array of strings of the tags
"tags": string[],
}Was this helpful?