Update Product

PUT /api/product/{product_id}

Access Permissions

MASTER

마스터

HUB_ADMIN

허브 관리자 ( 자신의 허브에 소속된 상품만 관리 가능 )

COMPANY

업체 ( 자신의 업체의 상품만 생성 및 수정 가능 )

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

productId

Long

상품 Id

productName

String

상품명

productQuantity

Integer

상품 수량

Response

{
  "id": 1,
  "name": "John",
  "age": 30
}

Last updated