- Enable or disable the functions bound to actions installed on the sandbox.
- Specify settings, such as timeout and exception behavior, for individual actions.
- Provide custom information to individual actions and to the application that contains the actions.
- Specify logging behaviors associated with actions.

- Log in to Dev Center.
- View a sandbox.
- In Admin, go to System > Customization > API Extensions.
JSON Structure
With the Action Management JSON Editor, you specify which actions you have installed to a sandbox, the context each action applies to, and the settings an action uses in each context (i.e., the application key, the function you want to execute, and the custom configuration data you want to provide the action). You also specify the custom configuration data available to all actions in the application and the log level that actions use in the application. The following code block and table demonstrate the options you can configure with the Action Management JSON Editor.Verify Enabled Functions Exist in the Deployed Application
If anactionId is configured with "enabled": true and a functionId that does not exist as a named export in the deployed application package, the platform logs an error of the form The App <key> has no export named <functionId> on every request that triggers the action. The action never runs successfully but still consumes runtime resources on each affected request.
Before enabling an action:
- Confirm that the
functionIdvalue matches a named export in the application’s builtassets. - Disable any
actionIdentries whose corresponding function is not yet deployed by setting"enabled": false. - When removing a function from an application, also remove or disable the corresponding
actionIdentry in the JSON editor.

