RemoveTransactionFlag Command

Removes a flag from a request. A CustomFlag with the specified flag name must already exist when used in the addon. If a corresponding flag is not found, it will not be removed from the request. Flags that are defined internally by the system cannot be removed.

RemoveTransactionFlag Parameters

NameDirectionTypeDescription
TransactionNumber
intThe transaction number which the flag should be removed from.
FlagName
stringThe name of the flag to be removed from the request.

Example

The following is an example of the syntax used in a SystemManager addon that will add a transaction flag to the ILLiad request with TransactionNumber 1234. The flag that will be added to the request is "Expedite Request."

ExecuteCommand("RemoveTransactionFlag", { 1234, "Expedite Request" });