---
title: "Delete a venue"
method: DELETE
path: "/venues/{key}"
tags: ["Venues"]
---

# Delete a venue

`DELETE /venues/{key}`

Soft delete a venue

## Path parameters

- `key` string, required — Venue key - either a unique ID (ven_xxx format) or URL-friendly slug

## Response `200`

OK

- object
  - `venue` Venue, required — Managed venue with custom branding and details. Teams can claim venues which then appear in location search results.
    - `id` string, required — Unique identifier for the venue
    - `createdAt` string, date-time, required — Timestamp in ISO 8601 format when the venue was created
    - `updatedAt` string, date-time, required — Timestamp in ISO 8601 format when the venue was last updated
    - `teamId` string, required — Team that manages this venue
    - `locationId` string, required — Location identifier for this venue
    - `googlePlaceId` string — Google Place ID when this venue is linked to a Google Places location
    - `approval` 'PENDING' | 'APPROVED' | 'REJECTED', required — Approval status of the venue
    - `name` string, required — Display name of the venue. Must be between 3 and 100 characters
    - `slug` string, required — URL-friendly slug for the venue. Must be unique within tenant
    - `description` string — Short description of the venue for listings and discovery
    - `image` object — Venue image
      - `src` string, uri, required
      - `alt` string, required
      - `width` number, required
      - `height` number, required
    - `contact` object — Public contact information and social media links
      - `email` string, email — Public contact email for venue inquiries
      - `phone` string — Public contact phone number
      - `website` string, uri — Venue website URL
      - `instagram` string — Instagram profile URL
      - `facebook` string — Facebook page URL
      - `twitter` string — Twitter/X profile URL
      - `tiktok` string — TikTok profile URL
      - `youtube` string — YouTube channel URL
    - `location` object, required — Physical location details including address, coordinates, and timezone
      - `id` string, required — Location identifier
      - `googlePlaceId` string — Google Place ID for this location
      - `createdAt` string, date-time, required — Timestamp in ISO 8601 format when the location was created
      - `updatedAt` string, date-time, required — Timestamp in ISO 8601 format when the location was last updated
      - `name` string, required — Location name
      - `address` string, required — Formatted address
      - `city` string — City name
      - `state` string — State or region
      - `postcode` string — Postal code
      - `country` string, required — Country name
      - `latitude` number, required — Latitude coordinate
      - `longitude` number, required — Longitude coordinate
      - `timeZone` string, required — IANA timezone identifier (e.g., 'America/New_York', 'Europe/London', 'Australia/Sydney', 'UTC'). Must be validated against the IANA timezone database where used.
      - `types` string[] — Google Place types indicating the category and nature of this location
      - `description` string — AI-generated description of the place, when available
      - `image` object — Primary location photo
        - `src` string, uri, required
        - `alt` string, required
        - `width` number, required
        - `height` number, required
    - `geohash` string, required — Geohash encoding of the venue's location for efficient spatial queries
    - `capacity` integer — Maximum capacity of the venue (number of attendees)
    - `metadata` object — Flexible key-value metadata storage for custom configuration. Similar to Stripe's metadata API. Maximum 50 keys, key names up to 40 characters, values up to 500 characters.
    - `deletedAt` string, date-time — Timestamp in ISO 8601 format when the venue was soft-deleted. Null if not deleted
    - `tenantId` string, required — Tenant ID for multi-tenant isolation

## Other responses

- `400` — 400
- `401` — 401
- `403` — 403
- `404` — 404
- `409` — 409
- `412` — 412
- `422` — 422
- `429` — 429
- `500` — 500
- `501` — 501
- `503` — 503

---

[API](https://skmtc.net/session/apis/session-services-api.md) · [All operations](https://skmtc.net/session/apis/session-services-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/session/session-services-api/versions/a1bb6f6c8a2e/schema)
