Removes a previously saved tag using tags/save.
Note: when removing tag that was trained to data namespace using faces/train, you must call faces/train again to persist changes made by removing specified tag.
Method entry point:
https://api.skybiometry.com/fc/tags/remove
- Supported HTTP methods
- GET, POST.
- Required parameters
-
- standard API parameters
- tids – one or more tag ids to remove. Tag id is a reference field in the response of faces/detect, faces/recognize and tags/get methods.
- Optional parameters
-
- password – tags.remove can be password protected if you want to make tags.remove a administrative operation. You can specify password in account settings.
example:
https://api.skybiometry.com/fc/tags/remove.json?api_key=aa754b54b37&api_secret=4b3a4c6d4c&tids=b1dcbe53_59ec9bb2ad15f
response:
{
"status" : "success",
"removed_tags" : [
{
"removed_tid" : "b1dcbe53_59ec9bb2ad15f",
"tid" : "b1dcbe53_59ec9bb2ad15f"
}
],
"message" : "Tag removed"
}