---
title: "Delete one or more simple cookies"
url: "https://sbx.developer-internal.sanofi.com/apis/httpbin-1/versions/da3754ed-f573-4cf9-a100-7688d77483f4/paths/cookies-delete/get"
---

> Full API specification: https://sbx.developer-internal.sanofi.com/apis/httpbin-1/versions/da3754ed-f573-4cf9-a100-7688d77483f4.md

# Delete one or more simple cookies

`GET` `/cookies/delete`

## Query parameters

- `freeform` (object, optional) - Enter free-form query parameters in the JSON format `{ "param1": "value1", "param2": "value2", ... }`. Note that the parameters will be actually sent as `?param1=value1&param2=value2&...`

## Responses

- `200` - OK

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: httpbin
  version: 1.0-oas3
servers:
  - url: https://httpbin.org
  - url: http://httpbin.apim.eu/
  - url: https://eu.httpbin.org
  - url: http://eu.httpbin.org
  - url: http://localhost:8000/test
paths:
  /cookies/delete:
    get:
      tags:
        - Cookies
      summary: Delete one or more simple cookies
      parameters:
        - $ref: "#/components/parameters/freeFormQuery"
      responses:
        "200":
          description: OK
components:
  parameters:
    freeFormQuery:
      name: freeform
      in: query
      schema:
        type: object
        additionalProperties: true
      style: form
      explode: true
      description: >
        Enter free-form query parameters in the JSON format `{ "param1":
        "value1", "param2": "value2", ... }`.


        Note that the parameters will be actually sent as
        `?param1=value1&param2=value2&...`
```
