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

# Remove one seller-declared property (409 for publisher-origin properties)



## OpenAPI

````yaml /openapi/storefront.yaml delete /api/v2/storefront/property-roster/properties/{domain}/{propertyKey}
openapi: 3.1.0
info:
  title: Semicola Exchange storefront API
  version: 2.0.0
  description: >-
    Seller (storefront) endpoints: storefront setup, inventory sources,
    products, AI Business Rules, playbook, demand inbox, proposals, approvals
    and seller reporting.
servers:
  - url: https://api.semicola.com
security:
  - bearerAuth: []
  - sessionCookie: []
tags:
  - name: Storefront
  - name: Inventory Sources
  - name: Publisher Domains
  - name: Products
  - name: Business Rules
  - name: Playbook
  - name: Library
  - name: Demand Inbox
  - name: Proposals
  - name: Approvals
  - name: Creative Reviews
  - name: Media Buys
  - name: Buyers
  - name: Reporting
  - name: Activity
  - name: Test Runs
paths:
  /api/v2/storefront/property-roster/properties/{domain}/{propertyKey}:
    delete:
      tags:
        - Publisher Domains
      summary: >-
        Remove one seller-declared property (409 for publisher-origin
        properties)
      operationId: deleteStorefrontPropertyRosterPropertiesByDomainByPropertyKey
      parameters:
        - name: domain
          in: path
          required: true
          schema:
            type: string
            minLength: 1
        - name: propertyKey
          in: path
          required: true
          schema:
            type: string
            minLength: 1
      responses:
        '204':
          description: No Content
        default:
          description: >-
            Error envelope `{data: null, error: {code, message, field?,
            details?}}`.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or OAuth access token.
    sessionCookie:
      type: apiKey
      in: cookie
      name: sc_session

````