Slack Message Api code
Wed Feb 11 2026 15:02:39 GMT+0000 (Coordinated Universal Time)
Saved by
@RehmatAli2024
Solution_Details = zoho.crm.getRecordById("Solutions",solution_id);
info "Solution_Details : " + Solution_Details;
if(Solution_Details.get("status") != "failure")
{
Solution_ID = Solution_Details.get("id");
info "Solution_ID : " + Solution_ID;
Lead_URL = "https://crm.zoho.com/crm/org883428182/tab/Solutions/" + Solution_ID;
slack_url = "https://hooks.slack.com/services/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";
messageMap = Map();
messageMap.put("text","AI Readliness Assessment Completed. <" + Lead_URL + "|View AI Readliness Assessment>");
response = invokeurl
[
url :slack_url
type :POST
parameters:messageMap.toString()
];
info response;
}
content_copyCOPY
Comments