BulkActionInfo

Represents the Bulk Actions associated with a Fit Package

Overview of BulkActionInfo goes here.

BulkActionInfo Properties

BulkActionInfo

Field Type Inherited from Description
BulkActionName String BulkActionInfo Gets or sets the bulk action name.
CanBeScheduled Boolean BulkActionInfo Gets or sets the can be scheduled flag. The can be scheduled flag determines if the action can be scheduled in a cron job.
HasCustomForm Boolean BulkActionInfo Gets or sets the has custom form flag. If HasCustomForm is set to true, then the action will render a custom form to be filled out and submitted.
Icon String BulkActionInfo Gets or sets the icon name. The name of the icon to display in the context menu.
ObjectTypes String[] BulkActionInfo Gets or sets the object types. The object types this action is allowed to be run on.
PackageKey String BulkActionInfo Gets or sets the package key. The key of the package the bulk action came from.
ScriptDisplayName String BulkActionInfo Gets or sets the script display name. The display name of the script the bulk action came from.
ScriptName String BulkActionInfo Gets or sets the script name. The name of the script the bulk action came from.

JSON Structure of BulkActionInfo

{
   "BulkActionName"	:	"String",
   "CanBeScheduled"	:	"Boolean",
   "HasCustomForm"	:	"Boolean",
   "Icon"	:	"String",
   "ObjectTypes"	:	"String[]",
   "PackageKey"	:	"String",
   "ScriptDisplayName"	:	"String",
   "ScriptName"	:	"String"
}

Get Bulk Actions For Object Types Async

Example in C#

// Returns: IEnumerable<BulkActionInfo>
var bulkActionInfo = await client.GetBulkActionsForObjectTypesAsync(FolderInfo folder, String objectTypes);

Example in CURL



           curl -X GET \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/FitPackages/BulkActions \
               -H 'Authorization: Bearer TOKEN_GOES_HERE'