# CookiesGetFilter

**Kind**: interface | **Module**: [Cookies](https://docs.interop.io/desktop/reference/javascript/cookies/index.md)

**Source**: https://docs.interop.io/desktop/reference/javascript/cookies/cookiesgetfilter/index.html

Filter object whose properties will be matched against all cookies to be retrieved.

## Properties

- **`domain`** (`string`, optional)
  Retrieves the cookies whose domains match or are subdomains of the specified domain.
- **`name`** (`string`, optional)
  Filters the cookies by name.
- **`path`** (`string`, optional)
  Retrieves the cookies whose paths match the specified path.
- **`secure`** (`boolean`, optional)
  Filters cookies by their `Secure` attribute.
- **`session`** (`boolean`, optional)
  If `true`, will return only the session cookies. If `false`, will return only the persistent cookies.
- **`url`** (`string`, optional)
  Retrieves the cookies which are associated with the specified URL. If not specified, will retrieve the cookies for all URLs.
