Assign Owner and groupby

Assign Owner and groupby

Hi,


I want to create and associate Projects from Zoho CRM Deals module. I have tried the below code and it is working fine.

  1. params.put("authtoken",access_token);
    params.put("projName",projectname);
    params.put("public","yes");
    params.put("projDesc","test Description");
    params.put("entityId",Id);
    params.put("templateName","test template");
    params.put("owner", 64699635);
  2. params.put("group_id", 11111111111111111111);
    info params;
    response = invokeurl
    [
    url :"https://crm.zoho.com/crm/private/json/Deals/createAssociateProjectToEntity?"
    type :POST
    parameters:params
    ];
    info response;
I want pass Group by and Owner into parameters.
Can anyone please let me know the exact format to pass Owner and Group By?
Thanks in advance