JS Client API
Search…
Getting Started
Rule Engine Unique Functions
Custom Form Window Functions
Known Issues
Use Cases & Code Samples
Retrieving Data
Retrieving Standard Resources
Retrieving User Defined Tables
Retrieving Attachments
Retrieving Items in Transaction Scope
Retrieving Transaction Lines
ADAL
Updating Data
Adding Objects to Standard Resources
Updating Standard resources
Updating User Defined Table
Updating Items in Transaction Scope
Adding Transaction Lines
Removing Transaction Lines
Powered By
GitBook
Known Issues
Validation
Currently the Client API is not doing validation for the following fields :
Rule engine does not support arrow functions:
Example:
1
var
arr
=
[
a
,
b
,
c
,
d
];
2
arr
.
forEach
(
function
(
x
)
{
alert
(
x
);});
Copied!
Example of unsupported code:
1
var
arr
=
[
a
,
b
,
c
,
d
];
2
arr
.
forEach
(
x
=>
{
alert
(
x
);});
Copied!
Rule engine does not support
let/const
variable types:
Example:
1
var
a
=
1
;
2
var
b
=
2
;
Copied!
Example of unsupported code:
1
let
a
=
1
;
2
const
b
=
2
;
Copied!
Previous
Custom Form Window Functions
Next
Use Cases & Code Samples
Last modified
2yr ago
Copy link