In this video I have shown how to create a zoho project with custom field. The method used in the video can be used to update a zoho projects also with custom field.
The api I have used is
https://www.zoho.com/projects/help/re...
The Complete code:
deal_res = zoho.crm.getRecordById("Deals", dealid);
deal_name = deal_res.getJSON("Deal_Name");
// info deal_name;
res = invokeurl[
url: "https://projectsapi.zoho.com/restapi/..."
type: GET
connection: "zohopr"
];
// info res;
var = Map();
var.put("name","Test Project");
var.put("UDF_CHAR1", deal_name);
res = invokeurl[
url: "https://projectsapi.zoho.com/restapi/..."
type: POST
parameters: var
connection: "zohopr"
];
info res;
Blog:
https://djtechblog.com/