# Delete a Configuration

Deletes a `Configuration` object.

## Prerequisites

Before you can run the following code snippet, you need to call these APIs with the provided parameters to set up the prerequisite API object(s).

1. createTerminalConfiguration
POST /v1/terminal/configurations

## Request

```curl
curl -X DELETE https://api.stripe.com/v1/terminal/configurations/{{CONFIGURATION_ID}} \
  -u "<<YOUR_SECRET_KEY>>"
```

### Response

```json
{
  "id": "tmc_FQqbaQCiy0m1xc",
  "object": "terminal.configuration",
  "deleted": true
}
```

## Returns

Returns the `Configuration` object that was deleted.
