# Delete a URL Group

> Delete a topic and all its endpoints

## Endpoint

`DELETE https://qstash-{region}.upstash.io/v2/topics/{urlGroupName}`

## Parameters

- `urlGroupName` (path, string, required): The name of the URL Group to delete.

## Responses

### 200 - URL Group deleted successfully

## cURL

```bash
curl --request DELETE \
  --url https://qstash-{region}.upstash.io/v2/topics/{urlGroupName} \
  --header 'Authorization: Bearer <token>'
```
