Skip to main content

Remove a Tag

Description

To remove or disassociate tags to the supported modules. 

Supported modules: conversations, visitors, contacts, companies

Query Parameters:

  • id (Mandatory): The ID of the tags to be removed. 

OAuth Scope:

  • ​SalesIQ.conversations.DELETE
  • SalesIQ.​visitors.DELETE
  • ​SalesIQ.companies.DELETE

Method: 

DELETE

Note: The ID passed in the payload will be removed from the respective module. The response you get will have the details of the rest tag, which is already associated. 

URL

Copiedhttps://{zohosalesiq_server_uri}/api/v2/{screenname}/{module_name}/{module_record_id}/tags?id={tag_id}

Example

Copiedhttps://salesiq.zoho.com/api/v2/zylker/conversations/54000000007003/tags?id=7000000004001

Success Response

Copied{
    url: "/api/v2/zylker/conversations/54000000007003/tags",
    object: "tags_ids_list",
    data:[
        {
            id : "7000000004002",
            name : "Spain",
            color : "#ff7609",
            module : "conversations",
            archived : false,
            status : "unarchived",
            modified_time: "1633353825877",
            modifier : {
                "name": "james",
                "modified_time": "1633353825877",
               "id": "11000000002001"
            }
        }
    ]
}