Environment information functions provide information about the agent, environment, and operation that the script is running in.
...
GetAgentGroupID
Declaration
Code Block |
---|
int GetAgentGroupID() |
Syntax
Code Block |
---|
GetAgentGroupID() |
Description
Returns the ID of the agent group that the operation or expression is currently running in.
Examples
Code Block |
---|
GetAgentGroupID();
// Returns an integer ID |
GetAgentGroupName
Declaration
Code Block |
---|
string GetAgentGroupName() |
Syntax
Code Block |
---|
GetAgentGroupName() |
Description
Returns the name of the agent group that the operation or expression is currently running in.
Examples
Code Block |
---|
GetAgentGroupName();
// Returns "Jitterbit Production Cloud Agent Group" |
GetAgentID
Declaration
Code Block |
---|
int GetAgentId() |
Syntax
Description
Returns the ID of the agent that is running the operation or expression.
Examples
Code Block |
---|
GetAgentID();
// Returns an integer ID |
GetAgentName
Declaration
Code Block |
---|
string GetAgentName() |
Syntax
Description
Returns the name of the agent that the operation or expression is currently running in.
Examples
Code Block |
---|
GetAgentName();
// Returns "Jitterbit Cloud Agent 2_1_1" |
GetAgentVersionID
Declaration
Code Block |
---|
int GetAgentVersionID() |
Syntax
Code Block |
---|
GetAgentVersionID() |
Description
Returns the version ID of the agent that the operation or expression is currently running in.
Examples
Code Block |
---|
GetAgentVersionID();
// Returns 80160000000015 (depending on the current agent version) |
GetAgentVersionName
Declaration
Code Block |
---|
string GetAgentVersionName() |
Syntax
Code Block |
---|
GetAgentVersionName() |
Description
Returns the version name of the agent that the operation or expression is currently running in.
Examples
Code Block |
---|
GetAgentVersionName();
// Returns "8.16.0.15" (depending on the current agent version) |
GetEnvironmentID
Declaration
Code Block |
---|
int GetEnvironmentID() |
Syntax
Code Block |
---|
GetEnvironmentID() |
Description
Returns the ID of the environment that the operation or expression is currently running in.
Examples
Code Block |
---|
GetEnvironmentID();
// Returns an integer ID |
GetEnvironmentName
Declaration
Code Block |
---|
string GetEnvironmentName() |
Syntax
Code Block |
---|
GetEnvironmentName() |
Description
Returns the name of the environment that the operation or expression is currently running in.
Example
Code Block |
---|
GetEnvironmentName();
// Returns a string with the environment name |
GetOrganizationID
Declaration
Code Block |
---|
int GetOrganizationID() |
Syntax
Code Block |
---|
GetOrganizationID() |
Description
Returns the ID of the organization that the operation or expression is currently running in.
Examples
Code Block |
---|
GetOrganizationId();
// Returns an integer ID |
GetOrganizationName
Declaration
Code Block |
---|
string GetOrganizationName() |
Syntax
Code Block |
---|
GetOrganizationName() |
Description
Returns the name of the organization that the operation or expression is currently running in.
Examples
Code Block |
---|
GetOrganizationName();
// Returns a string with the name of the organization |
Easy Heading Macro |
---|
headingIndent | 0 |
---|
expandOption | disable-expand-collapse |
---|
navigationTitle | On This Page |
---|
selector | h1,h2 |
---|
wrapNavigationText | true |
---|
navigationExpandOption | collapse-all-but-headings-1 |
---|
|
...