Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
How to load and get info about a request message with CRMScript.
Message m; m.load(1);
Message m; m.load(2); print(m.getValue("timeCharge").toString());
Message m; m.load(2); Integer[] attachments = m.getAttachments(); while(attachments.length() > 0) { printLine(attachments.popFront()); }
Was this page helpful?