# 표준 전시카테고리연결

## 연결 소전시 카테고리 목록 조회

> \## 기능설명\
> \* 표준카테고리에 연결된 전시 카테고리 목록을 조회한다.\
> \---\
> \## 상세설명\
> \* \[BO] 전시 > 카테고리 관리 > 표준&전시 카테고리 연결 > 연결 전시 카테고리(소) 목록 그리드 영역\
> \* 표준&전시 카테고리 연결 페이지에서 표준 카테고리를 선택했을 때 연결된 전시 카테고리 목록 조회한다.\
> \* 사이트 번호, 몰 번호, 대표카테고리여부, 전시카테고리 번호로 정렬하며 대표카테고리여부는 내림차순, 이외는 오름차순으로 정렬한다.<br>

```json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"PrStdCtgDispInfo":{"type":"object","description":"표준카테고리전시정보","properties":{"siteNo":{"type":"string","description":"사이트 번호"},"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"dispCtgNo":{"type":"string","description":"전시카테고리번호"},"repCtgYn":{"type":"string","description":"대표카테고리여부"},"useYn":{"type":"string","description":"사용여부"},"dispCtgNm":{"type":"string","description":"전시카테고리명","readOnly":true},"dpmlNo":{"type":"string","description":"전시몰 번호"},"siteNm":{"type":"string","description":"사이트명","readOnly":true},"dpmlNm":{"type":"string","description":"전시몰명","readOnly":true},"dispCtgHierarchy":{"type":"string","description":"상품 BO-API_전시카테고리 구조","readOnly":true}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/standardDisplayCategoryConnect":{"get":{"tags":["표준-전시카테고리연결"],"summary":"연결 소전시 카테고리 목록 조회","description":"## 기능설명\n* 표준카테고리에 연결된 전시 카테고리 목록을 조회한다.\n---\n## 상세설명\n* [BO] 전시 > 카테고리 관리 > 표준&전시 카테고리 연결 > 연결 전시 카테고리(소) 목록 그리드 영역\n* 표준&전시 카테고리 연결 페이지에서 표준 카테고리를 선택했을 때 연결된 전시 카테고리 목록 조회한다.\n* 사이트 번호, 몰 번호, 대표카테고리여부, 전시카테고리 번호로 정렬하며 대표카테고리여부는 내림차순, 이외는 오름차순으로 정렬한다.\n","operationId":"getStandardDisplayCategoryConnect","parameters":[{"name":"rowsPerPage","in":"query","description":"페이지 당 row","required":true,"schema":{"type":"string"}},{"name":"pageIdx","in":"query","description":"현재 페이지","required":true,"schema":{"type":"string"}},{"name":"stdCtgNo","in":"query","description":"표준카테고리번호","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"연결 소전시 카테고리 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PrStdCtgDispInfo"}}}},"900":{"description":"연결 소전시 카테고리 목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 연결 소전시 카테고리 목록 저장

> \## 기능설명\
> \* 표준카테고리에 연결된 전시 카테고리 목록을 저장한다.\
> \---\
> \## 상세설명\
> \* \[BO] 전시 > 카테고리 관리 > 표준&전시 카테고리 연결 > 연결 전시 카테고리(소) 목록 그리드 영역\
> \* 표준카테고리에 연결된 전시 카테고리 목록을 추가, 수정, 삭제한다.\
> \* 입력 파라미터( \_\_\*\_\_: 필수)\
> &#x20;   \- create: \_\_stdCtgNo \*, dispCtgNo \*, repCtgYn \*, useYn \*, siteNo \*, dpmlNo \*\_\_\
> &#x20;   \- update: \_\_stdCtgNo \*, dispCtgNo \*, repCtgYn \*, useYn \*\_\_\
> &#x20;   \- delete: \_\_stdCtgNo \*, dispCtgNo \*\_\_<br>

```json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"RealGridCUDRequestPrStdCtgDispInfo":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgDispInfo"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgDispInfo"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgDispInfo"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgDispInfo"}}}},"PrStdCtgDispInfo":{"type":"object","description":"표준카테고리전시정보","properties":{"siteNo":{"type":"string","description":"사이트 번호"},"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"dispCtgNo":{"type":"string","description":"전시카테고리번호"},"repCtgYn":{"type":"string","description":"대표카테고리여부"},"useYn":{"type":"string","description":"사용여부"},"dispCtgNm":{"type":"string","description":"전시카테고리명","readOnly":true},"dpmlNo":{"type":"string","description":"전시몰 번호"},"siteNm":{"type":"string","description":"사이트명","readOnly":true},"dpmlNm":{"type":"string","description":"전시몰명","readOnly":true},"dispCtgHierarchy":{"type":"string","description":"상품 BO-API_전시카테고리 구조","readOnly":true}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/standardDisplayCategoryConnect":{"post":{"tags":["표준-전시카테고리연결"],"summary":"연결 소전시 카테고리 목록 저장","description":"## 기능설명\n* 표준카테고리에 연결된 전시 카테고리 목록을 저장한다.\n---\n## 상세설명\n* [BO] 전시 > 카테고리 관리 > 표준&전시 카테고리 연결 > 연결 전시 카테고리(소) 목록 그리드 영역\n* 표준카테고리에 연결된 전시 카테고리 목록을 추가, 수정, 삭제한다.\n* 입력 파라미터( __*__: 필수)\n    - create: __stdCtgNo *, dispCtgNo *, repCtgYn *, useYn *, siteNo *, dpmlNo *__\n    - update: __stdCtgNo *, dispCtgNo *, repCtgYn *, useYn *__\n    - delete: __stdCtgNo *, dispCtgNo *__\n","operationId":"saveStandardDisplayCategoryConnect","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RealGridCUDRequestPrStdCtgDispInfo"}}},"required":true},"responses":{"200":{"description":"연결 소전시 카테고리 목록 저장 성공","content":{"*/*":{"schema":{"type":"string"}}}},"900":{"description":"연결 소전시 카테고리 목록 저장 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://tech.x2bee.com/api/back-office-api/display-bo-api/undefined-4.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
