# 매장템플릿 관리

## 매장 연결 템플릿 목록 조회

> \## 기능설명\
> \* 매장 연결 템플릿 목록 조회 API 입니다.\
> \---\
> \## 상세설명\
> \* 매장번호로 매장에 연결된 템플릿 목록을 조회합니다.<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":{"ResponseRealGridListResponseDisplayShopMappTemplateDto":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"$ref":"#/components/schemas/RealGridListResponseDisplayShopMappTemplateDto","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"RealGridListResponseDisplayShopMappTemplateDto":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/DisplayShopMappTemplateDto"}}}},"DisplayShopMappTemplateDto":{"type":"object","description":"매장템플릿매핑정보","properties":{"siteNm":{"type":"string","description":"사이트명"},"dpmlNm":{"type":"string","description":"전시몰명"},"shopTmplNo":{"type":"string","description":"매장템플릿번호"},"dispCtgNo":{"type":"string","description":"카테고리번호"},"mkdpNo":{"type":"string","description":"기획전번호"},"shopNo":{"type":"string","description":"매장번호"},"shopNm":{"type":"string","description":"매장명"},"tmplNo":{"type":"string","description":"템플릿번호"},"dispStrDtm":{"type":"string","format":"date-time","description":"전시시작일시"},"dispEndDtm":{"type":"string","format":"date-time","description":"전시종료일시"},"dispYn":{"type":"string","description":"전시여부"},"tmplNm":{"type":"string","description":"템플릿명"},"tmplFileNm":{"type":"string","description":"템플릿파일명"},"tmplTypCd":{"type":"string","description":"템플릿유형코드(DP004)"},"tmplTypCdNm":{"type":"string","description":"템플릿유형코드명"}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}}}},"paths":{"/v2/display/displayTemplateMappMgmt":{"get":{"tags":["매장템플릿 관리"],"summary":"매장 연결 템플릿 목록 조회","description":"## 기능설명\n* 매장 연결 템플릿 목록 조회 API 입니다.\n---\n## 상세설명\n* 매장번호로 매장에 연결된 템플릿 목록을 조회합니다.\n","operationId":"getShopMappTemplateList","parameters":[{"name":"shopNo","in":"query","description":"매장번호","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponseDisplayShopMappTemplateDto"}}}}}}}}}
```

## 매장 연결 템플릿 목록 저장

> \## 기능설명\
> \* 매장 연결 템플릿 목록 저장 API 입니다.\
> \---\
> \## 상세설명\
> \* 매장 연결 템플릿 목록을 저장, 수정, 삭제 할 수 있습니다.\
> \* 매장 템플릿에 연결된 코너가 있을 경우 삭제 불가능합니다.\
> \* 입력 파라미터( \_\_\*\_\_ : 필수)\
> &#x20;   \* create : \_\_shopNo \*, tmplNo \*, dispStrDtm \*, dispEndDtm \*, dispYn \*, sysRegId \*, sysModId \*\_\_\
> &#x20;   \* update : \_\_shopTmplNo \*, shopNo \*, tmplNo \*, dispStrDtm \*, dispEndDtm \*, dispYn \*, sysRegId \*, sysModId \*\_\_\
> &#x20;   \* delete : \_\_shopTmplNo \*\_\_\
> \---\
> \## 코드정리\
> \* \`\`\` 전시여부 \`\`\` : Y,N<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":{"RealGridCUDRequestDisplayShopMappTemplateDto":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/DisplayShopMappTemplateDto"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/DisplayShopMappTemplateDto"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/DisplayShopMappTemplateDto"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/DisplayShopMappTemplateDto"}}}},"DisplayShopMappTemplateDto":{"type":"object","description":"매장템플릿매핑정보","properties":{"siteNm":{"type":"string","description":"사이트명"},"dpmlNm":{"type":"string","description":"전시몰명"},"shopTmplNo":{"type":"string","description":"매장템플릿번호"},"dispCtgNo":{"type":"string","description":"카테고리번호"},"mkdpNo":{"type":"string","description":"기획전번호"},"shopNo":{"type":"string","description":"매장번호"},"shopNm":{"type":"string","description":"매장명"},"tmplNo":{"type":"string","description":"템플릿번호"},"dispStrDtm":{"type":"string","format":"date-time","description":"전시시작일시"},"dispEndDtm":{"type":"string","format":"date-time","description":"전시종료일시"},"dispYn":{"type":"string","description":"전시여부"},"tmplNm":{"type":"string","description":"템플릿명"},"tmplFileNm":{"type":"string","description":"템플릿파일명"},"tmplTypCd":{"type":"string","description":"템플릿유형코드(DP004)"},"tmplTypCdNm":{"type":"string","description":"템플릿유형코드명"}}},"ResponseString":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"type":"string","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}}}},"paths":{"/v2/display/displayTemplateMappMgmt":{"post":{"tags":["매장템플릿 관리"],"summary":"매장 연결 템플릿 목록 저장","description":"## 기능설명\n* 매장 연결 템플릿 목록 저장 API 입니다.\n---\n## 상세설명\n* 매장 연결 템플릿 목록을 저장, 수정, 삭제 할 수 있습니다.\n* 매장 템플릿에 연결된 코너가 있을 경우 삭제 불가능합니다.\n* 입력 파라미터( __*__ : 필수)\n    * create : __shopNo *, tmplNo *, dispStrDtm *, dispEndDtm *, dispYn *, sysRegId *, sysModId *__\n    * update : __shopTmplNo *, shopNo *, tmplNo *, dispStrDtm *, dispEndDtm *, dispYn *, sysRegId *, sysModId *__\n    * delete : __shopTmplNo *__\n---\n## 코드정리\n* ``` 전시여부 ``` : Y,N\n","operationId":"saveShopMappTemplateList","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RealGridCUDRequestDisplayShopMappTemplateDto"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}}}}}}}
````

## 전시템플릿 연결 매장/기획전 목록

> \## 기능설명\
> \* 전시템플릿 연결 매장/기획전 목록 조회 API 입니다.\
> \---\
> \## 상세설명\
> \* 템플릿번호, 템플릿유형코드, 페이지번호로 전시템플릿에 연결된 매장/기획전 목록을 조회합니다.<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":{"ResponseRealGridListResponseDisplayShopMappTemplateDto":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"$ref":"#/components/schemas/RealGridListResponseDisplayShopMappTemplateDto","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"RealGridListResponseDisplayShopMappTemplateDto":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/DisplayShopMappTemplateDto"}}}},"DisplayShopMappTemplateDto":{"type":"object","description":"매장템플릿매핑정보","properties":{"siteNm":{"type":"string","description":"사이트명"},"dpmlNm":{"type":"string","description":"전시몰명"},"shopTmplNo":{"type":"string","description":"매장템플릿번호"},"dispCtgNo":{"type":"string","description":"카테고리번호"},"mkdpNo":{"type":"string","description":"기획전번호"},"shopNo":{"type":"string","description":"매장번호"},"shopNm":{"type":"string","description":"매장명"},"tmplNo":{"type":"string","description":"템플릿번호"},"dispStrDtm":{"type":"string","format":"date-time","description":"전시시작일시"},"dispEndDtm":{"type":"string","format":"date-time","description":"전시종료일시"},"dispYn":{"type":"string","description":"전시여부"},"tmplNm":{"type":"string","description":"템플릿명"},"tmplFileNm":{"type":"string","description":"템플릿파일명"},"tmplTypCd":{"type":"string","description":"템플릿유형코드(DP004)"},"tmplTypCdNm":{"type":"string","description":"템플릿유형코드명"}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}}}},"paths":{"/v2/display/displayTemplateMappMgmt/{tmplNo}/shop":{"get":{"tags":["매장템플릿 관리"],"summary":"전시템플릿 연결 매장/기획전 목록","description":"## 기능설명\n* 전시템플릿 연결 매장/기획전 목록 조회 API 입니다.\n---\n## 상세설명\n* 템플릿번호, 템플릿유형코드, 페이지번호로 전시템플릿에 연결된 매장/기획전 목록을 조회합니다.\n","operationId":"getTemplateMappShopList","parameters":[{"name":"tmplNo","in":"path","description":"템플릿번호","required":true,"schema":{"type":"string"}},{"name":"tmplTypCd","in":"query","description":"템플릿유형코드(DP004)","required":true,"schema":{"type":"string"}},{"name":"pageIdx","in":"query","description":"페이지 번호","required":true,"schema":{"type":"number"}},{"name":"rowsPerPage","in":"query","description":"페이지당 개수","required":true,"schema":{"type":"number"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponseDisplayShopMappTemplateDto"}}}}}}}}}
```

## 매장 연결 템플릿 조회

> \## 기능설명\
> \* 구좌 매장 연결 템플릿 조회 API 입니다. 1개의 템플릿만 조회가 됩니다.\
> \---\
> \## 상세설명\
> \* 매장번호로 매장에 연결된 템플릿 목록을 조회합니다.\
> \---\
> \## 수정번호\
> \* \`\`\`Release v1.05\_231204\`\`\` : 매장 연결 템플릿 조회 최초 개발<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":{"ResponseDisplayShopMappTemplateDto":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"$ref":"#/components/schemas/DisplayShopMappTemplateDto","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"DisplayShopMappTemplateDto":{"type":"object","description":"매장템플릿매핑정보","properties":{"siteNm":{"type":"string","description":"사이트명"},"dpmlNm":{"type":"string","description":"전시몰명"},"shopTmplNo":{"type":"string","description":"매장템플릿번호"},"dispCtgNo":{"type":"string","description":"카테고리번호"},"mkdpNo":{"type":"string","description":"기획전번호"},"shopNo":{"type":"string","description":"매장번호"},"shopNm":{"type":"string","description":"매장명"},"tmplNo":{"type":"string","description":"템플릿번호"},"dispStrDtm":{"type":"string","format":"date-time","description":"전시시작일시"},"dispEndDtm":{"type":"string","format":"date-time","description":"전시종료일시"},"dispYn":{"type":"string","description":"전시여부"},"tmplNm":{"type":"string","description":"템플릿명"},"tmplFileNm":{"type":"string","description":"템플릿파일명"},"tmplTypCd":{"type":"string","description":"템플릿유형코드(DP004)"},"tmplTypCdNm":{"type":"string","description":"템플릿유형코드명"}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}}}},"paths":{"/v2/display/displayTemplateMappMgmt/{shopNo}":{"get":{"tags":["매장템플릿 관리"],"summary":"매장 연결 템플릿 조회","description":"## 기능설명\n* 구좌 매장 연결 템플릿 조회 API 입니다. 1개의 템플릿만 조회가 됩니다.\n---\n## 상세설명\n* 매장번호로 매장에 연결된 템플릿 목록을 조회합니다.\n---\n## 수정번호\n* ```Release v1.05_231204``` : 매장 연결 템플릿 조회 최초 개발\n","operationId":"getShopMappTemplate","parameters":[{"name":"shopNo","in":"path","description":"매장번호","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseDisplayShopMappTemplateDto"}}}}}}}}}
````

## 매장/기획전에 연결된 템플릿번호 목록 조회

> \## 기능설명\
> \* 매장/기획전에 연결된 템플릿번호 목록 조회 API 입니다.\
> \---\
> \## 상세설명\
> \* 템플릿번호목록으로 매장/기획전에 연결된 템플릿번호 목록 조회합니다.<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":{"ResponseListString":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"type":"array","description":"payload","items":{"type":"string"}},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}}}},"paths":{"/v2/display/displayTemplateMappMgmt/tmplNo":{"get":{"tags":["매장템플릿 관리"],"summary":"매장/기획전에 연결된 템플릿번호 목록 조회","description":"## 기능설명\n* 매장/기획전에 연결된 템플릿번호 목록 조회 API 입니다.\n---\n## 상세설명\n* 템플릿번호목록으로 매장/기획전에 연결된 템플릿번호 목록 조회합니다.\n","operationId":"getMappedTmplNoList","parameters":[{"name":"tmplNoList","in":"query","description":"템플릿번호목록","required":true,"schema":{"type":"array"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseListString"}}}}}}}}}
```


---

# 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-8.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.
