## Delete watermark profiles `client.stream.watermarks.delete(stringidentifier, WatermarkDeleteParamsparams, RequestOptionsoptions?): WatermarkDeleteResponse` **delete** `/accounts/{account_id}/stream/watermarks/{identifier}` Deletes a watermark profile. ### Parameters - `identifier: string` The unique identifier for a watermark profile. - `params: WatermarkDeleteParams` - `account_id: string` The account identifier tag. ### Returns - `WatermarkDeleteResponse = string` ### 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 watermark = await client.stream.watermarks.delete('ea95132c15732412d22c1476fa83f27a', { account_id: '023e105f4ecef8ad9ca31a8372d0c353', }); console.log(watermark); ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "success": true, "result": "" } ```