To get Item ID, of any item By its Name under ZOHO Sprints.
Hello Everyone,
Search query - to get item ID by its name Under ZOHO Sprints.
Now, its possible to get item ID ,its project id as well as its sprints id of any of the item by its name under zoho sprints.
Follow the procedure below:
map1 = Map();
map1.put("action","orgitemlogs");
map1.put("viewtype","0");
map1.put("index","1");
map1.put("range","50");
map1.put("searchby","name");
map1.put("searchvalue","Tanu");
header = Map();
header.put("X-ZA-REQSIZE","large");
search_item = invokeurl
[
type :GET
parameters:map1
headers:header
connection:"zoho_conn"
];
Replace "Tanu" with item name that you have to search.
also replace "7001886756" with your team id.
Thanks & Regards
Divya Kaushik