This API is used to Search tickets by using tag and labelPlease check
example usage of Vision Helpdesk APIBelow is the details to search tickets by using tagOperation : tag_search
Module : ticket
$postfields["vis_module"] = "ticket";
// This is the module under which you wish to perform operation$postfields["vis_operation"] = "tag_search";
// This is the operation field$postfields["tag_id"] = "1";
// This is the id of tagBelow is example API usage for search tickets by using taghttp://visiononlinedemo.com/support/api/index.php? &vis_txtusername=admin &vis_txtuserpass=21232f297a57a5a743894a0e4a801fc3 &vis_module=ticket &vis_operation=tag_search &tag_id=1
OR use "access token" to search tickets by using taghttp://visiononlinedemo.com/support/api/index.php? &vis_txttoken=WXprMk1UY3dZV1V6WWpZeU16RmpOelF3TVdReE5UWTJOVGMyTm1VeU4yUT0= &vis_module=ticket &vis_operation=tag_search &tag_id=1 &vis_encode=json
Below is the details to search tickets by using labelOperation : search_label_tickets
Module : ticket
$postfields["vis_module"] = "ticket";
// This is the module under which you wish to perform operation$postfields["vis_operation"] = "search_label_tickets";
// This is the operation field$postfields["vis_label_id"] = "1";
// This is the id of label
Below is example API usage for search tickets by using labelhttp://visiononlinedemo.com/support/api/index.php? &vis_txtusername=admin &vis_txtuserpass=21232f297a57a5a743894a0e4a801fc3 &vis_module=ticket &vis_operation=search_label_tickets &vis_label_id=1
OR use "access token" to search tickets by using labelhttp://visiononlinedemo.com/support/api/index.php? &vis_txttoken=WXprMk1UY3dZV1V6WWpZeU16RmpOelF3TVdReE5UWTJOVGMyTm1VeU4yUT0= &vis_module=ticket &vis_operation=search_label_tickets &vis_label_id=1 &vis_encode=json