This object represents the business logic which can be executed either through an operation or cronjob
Document| Property | Type | Description |
|---|---|---|
| id | Integer | Unique identifier for the object |
| status | Integer | Status of the object either 1 = active or 0 = deleted |
| name | Text | Unique name of the object |
| class | Text | Underlying class of this action which handles the action logic |
| async | Boolean | Whether to execute the action asynchronously, if true the action directly returns a 202 response and the action is executed later on in the background, useful for expensive operations |
| config | Backend_ActionConfig | Contains the action specific configuration. The config depends on the action class, you can get all details of the config format by passing the class to the backend-action-getForm tool |
| metadata | Common_Metadata | Use this parameter to attach key-value data |