I need Documentation for full argument options or combinations of .get() when v2 api invokeurl is used.

I need Documentation for full argument options or combinations of .get() when v2 api invokeurl is used.


Hi

i am using the v2 api to create record and trying to get the new record id.

example:

dlist = List();

dlist.add(paramap);

dmp = map();

dmp.put("data",dlist);

createResp = invokeurl

[

  url: "https://www.zohoapis.com/crm/v2.1/Quotes"

  type: POST

  parameters: dmp + ""

  connection: "zzzzzz"

];

info "Create Quote Resp : "+createResp;

newid = createResp.get("data").get(0).get("id");

openUrl("https://crm.zoho.com/crm/orgxxxxxxxx/tab/Quotes/" + newid,"parent window");


where can i get the full argument options for the above code, i.e. all the combinations of .get().

thanks
Rahul