본문으로 건너뛰기

프로모션 카테고리 목록 조회

POST 

/procedure-menu/open/promotions/v1/queries/get-promotion-categories

프로모션 카테고리 목록 조회

Request

### Content-Type별 요청의 JSON Schema

{
"application/json": {
"schema": {
"type": "object",
"properties": {},
"title": "protos.Empty"
}
}
}

Responses

OK

### Status Code별 응답의 JSON Schema

{
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"order": {
"type": "integer",
"format": "int32"
},
"deleted": {
"type": "boolean"
}
},
"title": "protos.procedure.PromotionCategoryContract"
}
}
},
"title": "protos.procedure.GetPromotionCategoriesQueryResponse"
}
}
}
}
}