Skip to main content

Get the List of Tags

Description

To display all the tags in the portal. 

Query Parameters:

  • module (optional): The name of the module in which the list of tags should be retrieved. 

Supported modules: conversations, visitors, contacts, companies

OAuth Scope: 

​SalesIQ.tags.READ

Method:

GET

URL

Copiedhttps://{zohosalesiq_server_uri}/api/v2/{screenname}/tags?module={module_name}

Example

Copiedhttps://salesiq.zoho.com/api/v2/zylker/tags?module=conversations

Success Response

Copied{
    url: "/api/v2/zylker/tags",
    object: "tags_list",
    data:[
        {
            id : "54000000002009",
            name : "Japan",
            color : "#ff9807",
            module : "conversations",
            archived : false,
            status : "unarchived",
            modified_time: "1633353825877",
            modifier : {
                "name": "james",
                "modified_time": "1633353825877",
                "id": "11000000002001"
            }
        },
        {
            id : "54000000002001",
            name : "Europe",
            color : "#ff9807",
            module : "conversations",
            archived : false,
            status : "unarchived",
            modified_time: "1633353825877",
            modifier : {
                "name": "james",
                "modified_time": "1633353825877",
                "id": "11000000002001"
            }
        }
    ]
}