We are trying to move an existing Zoho Projects task to a different parent task via API.
Example:
289214000001385113289214000001281044289214000001281045We tested updating the task with:
taskParam.put("parent_task_id", "289214000001281045");The API request succeeds without errors, but the parent task is not changed.
The response still returns the old parent_task_id.
We also tested a /move endpoint, but received:
{
"error": {
"code": 6891,
"message": "Given URL is wrong"
}
}
Also V3 didnt work// =====================================================// 2. PATCH Params bauen// =====================================================
params = Map();params.put("parental_info", {"parent_task_id":newParentId});
info "PATCH Params:";info params;
// =====================================================// 3. PATCH Request senden// =====================================================
patchResp = invokeurl[ url : taskUrl type : PATCH parameters : params.toString() connection : "zproject_connection"];
info "PATCH Response:";info patchResp;
Question:
Is it possible to move an existing task to another parent task via Zoho Projects API?
If yes, which endpoint or parameter should be used?