Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Script modules are used to define commonly used library functions. Modules can be called from pre work, post work like server environment, or form and validation rule like client environment.

...

  1. Click "+" icon from "Script Modules"
  2. Specify the module name. Because the module name is used in a script environment, whitespace or other punctuation chars cannot be used for it.
  3. Modify the module content as a following script:

...

Expand
titleRequest Example
Http Request$Headers

POST /rest/v1/executeModule HTTP/1.1
Host: mydomain.emakin.com
Authorization: Bearer F8C......8B
X-My-Header: MyValue

{
     "apiKey": "49......72",
     "logonId": "myuser@emakin.com",
     "logonProvider": "Organization",
     "process" :"c6acc319-76cd-4265-abc1-d4ee2698dfbd",
     "module": "Module",
     "function" :"myFunction",
     "arguments" : []
}

$Headers defined as;

Code Block
$Headers = {
  "Hosthost": ["mydomain.emakin.com"],
  "Xx-Mymy-Headerheader": ["MyValue"],
  "REMOTEremote_ADDRaddr": ["67.3.2.1"],
  "REMOTEremote_PORTport": ["80",]

}

$Cookies
Specifies the http context request cookies as object instance.

Expand
titleCookies Example
Http Request$Cookie

POST /rest/v1/executeModule HTTP/1.1
Host: mydomain.emakin.com
Authorization: Bearer F8C......8B
Cookie:

a

MyCookie=1;

b

MyOtherCookie=2


{
     "apiKey": "49......72",
     "logonId": "myuser@emakin.com",
     "logonProvider": "Organization",
     "process" :"c6acc319-76cd-4265-abc1-d4ee2698dfbd",
     "module": "Module",
     "function" :"myFunction",
     "arguments" : []
}

$Cookie defined as;

Code Block
$Cookie = {
  "
a
mycookie": "1",
  "
b
myothercookie": "2" 
}