> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dataerai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete apigeobound country sets 

> GET / PUT / PATCH / DELETE /api/geobound-country-sets/<uuid:pk>/

READ (retrieve) open to any authenticated user; UPDATE/DELETE gated to
system admins (``IsSystemAdminOrReadOnly``).



## OpenAPI

````yaml /api-reference/openapi.yaml delete /api/geobound-country-sets/{id}/
openapi: 3.0.3
info:
  title: Console API
  version: 1.0.0
  description: Central control plane API for the Dataerai platform.
servers:
  - url: https://{server}
    description: Your Dataerai deployment (the API is served under /api)
    variables:
      server:
        default: your-deployment.dataerai.com
        description: Host of your Dataerai deployment
security: []
paths:
  /api/geobound-country-sets/{id}/:
    delete:
      tags:
        - api
      description: |-
        GET / PUT / PATCH / DELETE /api/geobound-country-sets/<uuid:pk>/

        READ (retrieve) open to any authenticated user; UPDATE/DELETE gated to
        system admins (``IsSystemAdminOrReadOnly``).
      operationId: api_geobound_country_sets_destroy
      parameters:
        - in: path
          name: id
          schema:
            type: string
            format: uuid
          required: true
      responses:
        '204':
          description: No response body
      security:
        - cookieAuthCsrfExempt: []
components: {}

````