> ## Documentation Index
> Fetch the complete documentation index at: https://developers-partners.delivered.co.kr/llms.txt
> Use this file to discover all available pages before exploring further.

# 상품 정보 삭제

> 
            상품 삭제 API 입니다.
            path 파라미터 shopProductId로 식별되는 상품 1건을 삭제합니다.
            성공 시 204 No Content를 반환합니다.
        



## OpenAPI

````yaml /api-reference/global-link-api.json DELETE /open-api/v1/global-link/products/{shopProductId}
openapi: 3.0.1
info:
  title: Global Link Open API
  description: '-'
  version: 1.0.0
servers:
  - url: https://gw-staging.delivered.co.kr/global-ship
    description: 테스트 환경
  - url: https://auth.delivered.co.kr/global-ship
    description: 운영 환경
security:
  - Authorization: []
tags:
  - name: 글로벌링크 상품
    description: 글로벌링크 상품
paths:
  /open-api/v1/global-link/products/{shopProductId}:
    delete:
      tags:
        - Global Link Product
      summary: 글로벌링크 상품 단건 삭제
      description: |2-

                    상품 삭제 API 입니다.
                    path 파라미터 shopProductId로 식별되는 상품 1건을 삭제합니다.
                    성공 시 204 No Content를 반환합니다.
                
      operationId: deleteProduct
      parameters:
        - name: shopProductId
          in: path
          required: true
          schema:
            type: string
      responses:
        '204':
          description: No Content
components:
  securitySchemes:
    Authorization:
      type: apiKey
      description: 발급받은 시크릿 키
      name: Authorization
      in: header

````