...
To access the webClient
, use the following syntax:
Deprecated - still works but it is no longer required to specify the method and url when getting the webclient
Code Block | ||
---|---|---|
| ||
let webClient = context.getWebClient("GET", "https://host.com/some-uri"); |
Simple Way
Code Block | ||
---|---|---|
| ||
let webClient = context.getWebClient(); |
...
This object provides similar methods to those available in the Concept
object for accessing properties and records (see here):
Property Access Methods: Includes methods to retrieve simple properties in various data types (e.g.,
getProperty(String key)
,getPropertyAsInt(String key)
, etc.).Complex Property (Record) Access Methods: Includes methods to access complex properties or records such as
getComplexProperty(String recordTypeKey)
which retrieves a list of complex properties (records) based on the record type key.
...