# Remove login security record from list This function deletes a record or records from cPHulk's whitelist or blacklist. Endpoint: GET /delete_cphulk_record Version: 11.134.0.5 Security: BasicAuth ## Query parameters: - `ip` (array, required) The record's IP address. To delete multiple IP addresses, increment the parameter name. For example, , , . - `list_name` (string, required) The cPHulk list's name. * * Enum: "white", "black" - `skip_enabled_check` (integer) Whether to skip checking if cPHulk runs on the server. * - Don’t check cPHulk’s status. * - Check cPHulk’s status. If cPHulk is disabled and you check its status, the function returns the following message: . Enum: 0, 1 ## Response 200 fields (application/json): - `data` (object) - `data.ips_failed` (object) Information about IP addresses that the system failed to add to the list. Example: {"192.168.0.1":"This is why, alpha.","192.168.9.1":"This is why, beta."} - `data.ips_removed` (array) The IP addresses that the function removed from the list. Example: ["192.168.0.1"] - `data.list_name` (string) The cPHulk list's name. * * Enum: "black", "white" - `data.requester_ip` (string) The requester's IP address. Example: "192.168.0.1" - `data.requester_ip_is_whitelisted` (integer) Whether the requester's IP address exists on cPHulk's whitelist. * - Whitelisted. * - whitelisted. Enum: 0, 1 - `metadata` (object) - `metadata.command` (string) The method name called. Example: "delete_cphulk_record" - `metadata.reason` (string) The reason the API function failed when the field is 0. This field may display a success message when a function succeeds. Example: "OK" - `metadata.result` (integer) * - Success * - Failed: Check the reason field for more details. Enum: 0, 1 - `metadata.version` (integer) The version of the API function. Example: 1