# Removes the child process control configuration Deletes the child process application group and disables child process control enforcement. ## Endpoint **PUT** `/dcapi/appctrl/deleteChildProcess` ## Request ### Request URL `https://{server-hostname}:8383/dcapi/appctrl/deleteChildProcess` ### Scope `AppControl.DELETE` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Sample Request ```curl curl --request PUT \ --url https://appdomain/dcapi/appctrl/deleteChildProcess \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP 200 Response Body — `application/json` **JSON object** - **status** (`boolean`): Whether the operation completed successfully (true=success, false=failure) ### HTTP 500 Response Body — `application/json` **JSON object** - **errorCode** (`string`): Internal error code: INTERNAL_ERROR when exception occurs deleting child process group - **errorMessage** (`string`): Detailed message: Error while deleting child process app group ## Possible Response Codes - **200** — HTTP code - **500** — HTTP code ## Sample Response: HTTP 200 Child process configuration deleted successfully ```json { "status": true } ``` ## Sample Response: HTTP 500 Internal error while deleting child process group ```json { "errorMessage": "Error Occurred while deleting child process app group", "errorCode": "INTERNAL_ERROR" } ``` ![ ](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **Duration:** 1 minute | **Threshold:** 30 | **Lock period:** 5 minutes Duration - Time window for the threshold. Threshold - Number of API calls allowed within the specified duration. Lock Period - Wait time before consecutive API requests.