Get CRM ID for further fetching and update
Hi,
I'm trying to get Campaign ID for CRM. What is the correct way to write Campaign Id to get ID for further update ? It's working with all fields but not ID...
Thanks.
- crmResp = zoho.crm.searchRecordsByPDC("Campaigns", "campaignname", input.Campagnes_Promotions);
- for each r in crmResp
- {
- Budgeted = r.get(("Budgeted Cost"));
- Actual = r.get("Actual Cost");
- input.CampaignID = r.get("Campaign Id");
- }