# Delete members and domains from the blocklist This API method is used for removing members and domains from the blocklist of the Annex Cloud site. If members or domains are requested to be deleted but are not on the blocklist, you will be notified in the API response. Endpoint: POST /blocklistdelete Version: 3.0.0 Security: ## Request fields (application/json): - `deleteBlocklistDomains` (string) Enter the list of domains that must be deleted from the blocklist. Multiple domains can be deleted from the blocklist separated with a comma. Example: "testdomain1.com" - `deleteBlocklistUsers` (string) Enter the list of members that should be deleted from the blocklist by entering their user ID. Multiple user IDs can be deleted from the blocklist separated with a comma. Example: "sa.matthenryy12@gmail.com, joyroy.saa12" ## Response 200 fields (application/json): - `deletedUserData` (object) - `deletedUserData.userNotExistedInBlocklist` (array) Displays the user IDs of the members that have been requested to be deleted but do not exist in the blocklist. Multiple user IDs that do not exist in the blocklist are displayed separated with a comma. Example: "sa.matthenryy12@gmail.com, joyroy.saa12" - `deletedDomainData` (object) - `deletedDomainData.domainNotExistedInBlocklist` (array) Displays the domains that have been requested to be deleted but do not exist in the blocklist. Multiple domains that do not exist in the blocklist are displayed separated with a comma. Example: "testdomain1.com" ## Response 404 fields