## Delete an origin cloud region mapping `client.cache.originCloudRegions.delete(stringoriginIP, OriginCloudRegionDeleteParamsparams, RequestOptionsoptions?): OriginCloudRegionDeleteResponse` **delete** `/zones/{zone_id}/origin/cloud_regions/{origin_ip}` Removes the cloud region mapping for a single origin IP address. The IP path parameter is normalized before lookup. Returns the deleted IP on success. Returns 404 if no mapping exists for the specified IP. When the last mapping for the zone is removed the underlying rule record is also deleted. ### Parameters - `originIP: string` - `params: OriginCloudRegionDeleteParams` - `zone_id: string` Identifier. ### Returns - `OriginCloudRegionDeleteResponse` Response result for a delete operation. Identifies the deleted mapping. - `origin_ip: string` The origin IP address whose mapping was deleted. ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); const originCloudRegion = await client.cache.originCloudRegions.delete('192.0.2.1', { zone_id: '023e105f4ecef8ad9ca31a8372d0c353', }); console.log(originCloudRegion.origin_ip); ``` #### Response ```json { "errors": [], "messages": [], "result": { "origin_ip": "192.0.2.1" }, "success": true } ```