[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Network](./puppeteer.protocol.network.md) > [DeleteCookiesRequest](./puppeteer.protocol.network.deletecookiesrequest.md) ## Protocol.Network.DeleteCookiesRequest interface Signature: ```typescript export interface DeleteCookiesRequest ``` ## Properties | Property | Type | Description | | --- | --- | --- | | [domain](./puppeteer.protocol.network.deletecookiesrequest.domain.md) | string | If specified, deletes only cookies with the exact domain. | | [name](./puppeteer.protocol.network.deletecookiesrequest.name.md) | string | Name of the cookies to remove. | | [path](./puppeteer.protocol.network.deletecookiesrequest.path.md) | string | If specified, deletes only cookies with the exact path. | | [url](./puppeteer.protocol.network.deletecookiesrequest.url.md) | string | If specified, deletes all the cookies with the given name where domain and path match provided URL. |