inputData | JSON Input: {formName:<form name>, input:{LabelName:value, LabelName1:value}}; For LabelName - Refer here |
inputData | JSON Input: {formName:<form name>, input:{LabelName:value, LabelName1:value},recordId: <form record id>}; For formName - Refer here |
inputData | JSON Input: {recordId:<record id>,formName: <form name>}; For formName - Refer here |
inputData | JSON Input: {formName:<form name>,startIndex:<from limit>,limit:<to limit>} startIndex- not mandatory, default value -1 limit- not mandatory, default value - 200 |
| inputData | JSON Input: |
inputData | JSON Input: {fcId:<form component id>,recordId:<form record id>,formId:<form id>} |
fileInput | JSON Input: {uploadfile:<Blob or file>, fileName: <File name>, employeeId:<empId>,fileDesc: <Description>,catId:<CategoryId>}; To get catId, use: ZOHO.People.API.getFileCategories(); |
inputData | JSON Input: var requestObj = { url : url, header: {'Authorization'':"Zoho-oauthtoken-__token"} params: {}; }; Zoho-oauth is for invoking Zoho Services api. |
inputData | JSON Input var input = {url: <url to invoke>, connectiondetails:"name=<connection-name>", params : <url params>, // url parameters optional methodType: <GET|POST|PUT|DELETE>; extraParam: <url headers>}; // url headers optional }; Example : var input = { url:"target_url", connectiondetails: "connection name", method: "POST", apiParams : { "id" : "12121212121212", "name" : "john", }, extraParam : { "Content-Type" : "application/json" }, }; |
InputData | JSON Input var requestData = { fnName : {Function Name}*, params : {pass arguments as stringify json format} - Optional } Example: var requestData = { fnName : Approve, params : '{"name":"kiran","num":"999","status":"true"}' } |
Ensure that all JS SDK API calls in your HTML file are enclosed within ZOHO.embeddedApp.init() for the application initialization.