# 스와이퍼 타입 관리

## 스와이퍼 타입 단건 조회

> \## 기능설명\
> \* 스와이퍼 타입 단건 조회 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":{"ResponseSwiperType":{"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/SwiperType","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"SwiperType":{"type":"object","description":"스와이퍼 타입 기본","properties":{"swiperTypNo":{"type":"string","description":"스와이퍼 타입 번호"},"swiperTypId":{"type":"string","description":"스와이퍼 타입 ID"},"swiperTypNm":{"type":"string","description":"스와이퍼 타입명"},"swiperTypDesc":{"type":"string","description":"스와이퍼 타입 설명"},"useYn":{"type":"string","description":"사용여부"},"swiperTypeTargetList":{"type":"array","description":"스와이퍼 타입 대상 정보 목록","items":{"$ref":"#/components/schemas/SwiperTypeTarget"}},"swiperTypeTgtNmStr":{"type":"string","description":"스와이퍼 타입 대상 정보 문자열"}}},"SwiperTypeTarget":{"type":"object","description":"스와이퍼 타입 대상 정보","properties":{"swiperTypNo":{"type":"string","description":"스와이퍼 타입 번호"},"swiperTgtCd":{"type":"string","description":"스와이퍼대상코드(DP005)"},"dispSeq":{"type":"integer","format":"int32","description":"전시순서","minimum":1},"swiperTgtCnt":{"type":"integer","format":"int32","description":"스와이퍼대상수","maximum":999,"minimum":1}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}}}},"paths":{"/v1/display/swiperType/{swiperTypNo}":{"get":{"tags":["스와이퍼 타입 관리"],"summary":"스와이퍼 타입 단건 조회","description":"## 기능설명\n* 스와이퍼 타입 단건 조회 API 입니다.\n---\n## 상세설명\n* 스와이퍼 타입 번호로 스와이퍼 타입을 상세 조회합니다.\n","operationId":"getSwiperTypeList","parameters":[{"name":"swiperTypNo","in":"path","description":"스와이퍼 타입 번호","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseSwiperType"}}}}}}}}}
```

## 스와이퍼 타입 단건 수정

> \## 기능설명\
> \* 스와이퍼 타입을 수정하는 API 입니다.\
> \---\
> \## 상세설명\
> \* 필수 값 목록\
> &#x20;   \* 스와이퍼 타입 번호\
> &#x20;   \* 스와이퍼 타입 ID\
> &#x20;   \* 스와이퍼 타입명\
> &#x20;   \* 스와이퍼 타입 설명\
> &#x20;   \* 사용여부\
> &#x20;   \* 스와이퍼 타입 대상 정보 목록\
> &#x20;   \* 등록자ID\
> &#x20;   \* 수정자ID\
> \---\
> \## 코드정리\
> \* \`\`\` 사용여부 \`\`\` : 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":{"SwiperType":{"type":"object","description":"스와이퍼 타입 기본","properties":{"swiperTypNo":{"type":"string","description":"스와이퍼 타입 번호"},"swiperTypId":{"type":"string","description":"스와이퍼 타입 ID"},"swiperTypNm":{"type":"string","description":"스와이퍼 타입명"},"swiperTypDesc":{"type":"string","description":"스와이퍼 타입 설명"},"useYn":{"type":"string","description":"사용여부"},"swiperTypeTargetList":{"type":"array","description":"스와이퍼 타입 대상 정보 목록","items":{"$ref":"#/components/schemas/SwiperTypeTarget"}},"swiperTypeTgtNmStr":{"type":"string","description":"스와이퍼 타입 대상 정보 문자열"}}},"SwiperTypeTarget":{"type":"object","description":"스와이퍼 타입 대상 정보","properties":{"swiperTypNo":{"type":"string","description":"스와이퍼 타입 번호"},"swiperTgtCd":{"type":"string","description":"스와이퍼대상코드(DP005)"},"dispSeq":{"type":"integer","format":"int32","description":"전시순서","minimum":1},"swiperTgtCnt":{"type":"integer","format":"int32","description":"스와이퍼대상수","maximum":999,"minimum":1}}},"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":{"/v1/display/swiperType/{swiperTypNo}":{"put":{"tags":["스와이퍼 타입 관리"],"summary":"스와이퍼 타입 단건 수정","description":"## 기능설명\n* 스와이퍼 타입을 수정하는 API 입니다.\n---\n## 상세설명\n* 필수 값 목록\n    * 스와이퍼 타입 번호\n    * 스와이퍼 타입 ID\n    * 스와이퍼 타입명\n    * 스와이퍼 타입 설명\n    * 사용여부\n    * 스와이퍼 타입 대상 정보 목록\n    * 등록자ID\n    * 수정자ID\n---\n## 코드정리\n* ``` 사용여부 ``` : Y, N\n","operationId":"modifySwiperType","parameters":[{"name":"swiperTypNo","in":"path","description":"스와이퍼 타입 번호","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SwiperType"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}}}}}}}
````

## 스와이퍼 타입 목록 조회

> \## 기능설명\
> \* 스와이퍼 타입 목록 조회 API 입니다.\
> \---\
> \## 상세설명\
> \* 조건에 따라 스와이퍼 타입 목록을 조회합니다.\
> \---\
> \## 코드정리\
> \* \`\`\` 사용여부 \`\`\` : 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":{"ResponseRealGridListResponseSwiperType":{"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/RealGridListResponseSwiperType","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"RealGridListResponseSwiperType":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/SwiperType"}}}},"SwiperType":{"type":"object","description":"스와이퍼 타입 기본","properties":{"swiperTypNo":{"type":"string","description":"스와이퍼 타입 번호"},"swiperTypId":{"type":"string","description":"스와이퍼 타입 ID"},"swiperTypNm":{"type":"string","description":"스와이퍼 타입명"},"swiperTypDesc":{"type":"string","description":"스와이퍼 타입 설명"},"useYn":{"type":"string","description":"사용여부"},"swiperTypeTargetList":{"type":"array","description":"스와이퍼 타입 대상 정보 목록","items":{"$ref":"#/components/schemas/SwiperTypeTarget"}},"swiperTypeTgtNmStr":{"type":"string","description":"스와이퍼 타입 대상 정보 문자열"}}},"SwiperTypeTarget":{"type":"object","description":"스와이퍼 타입 대상 정보","properties":{"swiperTypNo":{"type":"string","description":"스와이퍼 타입 번호"},"swiperTgtCd":{"type":"string","description":"스와이퍼대상코드(DP005)"},"dispSeq":{"type":"integer","format":"int32","description":"전시순서","minimum":1},"swiperTgtCnt":{"type":"integer","format":"int32","description":"스와이퍼대상수","maximum":999,"minimum":1}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}}}},"paths":{"/v1/display/swiperType":{"get":{"tags":["스와이퍼 타입 관리"],"summary":"스와이퍼 타입 목록 조회","description":"## 기능설명\n* 스와이퍼 타입 목록 조회 API 입니다.\n---\n## 상세설명\n* 조건에 따라 스와이퍼 타입 목록을 조회합니다.\n---\n## 코드정리\n* ``` 사용여부 ``` : Y, N\n","operationId":"getSwiperTypeList_1","parameters":[{"name":"swiperTypNo","in":"query","description":"스와이퍼 타입 번호","schema":{"type":"string"}},{"name":"swiperTypNm","in":"query","description":"스와이퍼 타입명","schema":{"type":"string"}},{"name":"swiperTypId","in":"query","description":"스와이퍼 타입ID","schema":{"type":"string"}},{"name":"useYn","in":"query","description":"사용여부","schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponseSwiperType"}}}}}}}}}
````

## 스와이퍼 타입 단건 등록

> \## 기능설명\
> \* 스와이퍼 타입을 등록하는 API 입니다.\
> \---\
> \## 상세설명\
> \* 필수 값 목록\
> &#x20;   \* 스와이퍼 타입 ID\
> &#x20;   \* 스와이퍼 타입명\
> &#x20;   \* 스와이퍼 타입 설명\
> &#x20;   \* 사용여부\
> &#x20;   \* 스와이퍼 타입 대상 정보 목록\
> &#x20;   \* 등록자ID\
> &#x20;   \* 수정자ID\
> \---\
> \## 코드정리\
> \* \`\`\` 사용여부 \`\`\` : 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":{"SwiperType":{"type":"object","description":"스와이퍼 타입 기본","properties":{"swiperTypNo":{"type":"string","description":"스와이퍼 타입 번호"},"swiperTypId":{"type":"string","description":"스와이퍼 타입 ID"},"swiperTypNm":{"type":"string","description":"스와이퍼 타입명"},"swiperTypDesc":{"type":"string","description":"스와이퍼 타입 설명"},"useYn":{"type":"string","description":"사용여부"},"swiperTypeTargetList":{"type":"array","description":"스와이퍼 타입 대상 정보 목록","items":{"$ref":"#/components/schemas/SwiperTypeTarget"}},"swiperTypeTgtNmStr":{"type":"string","description":"스와이퍼 타입 대상 정보 문자열"}}},"SwiperTypeTarget":{"type":"object","description":"스와이퍼 타입 대상 정보","properties":{"swiperTypNo":{"type":"string","description":"스와이퍼 타입 번호"},"swiperTgtCd":{"type":"string","description":"스와이퍼대상코드(DP005)"},"dispSeq":{"type":"integer","format":"int32","description":"전시순서","minimum":1},"swiperTgtCnt":{"type":"integer","format":"int32","description":"스와이퍼대상수","maximum":999,"minimum":1}}},"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":{"/v1/display/swiperType":{"post":{"tags":["스와이퍼 타입 관리"],"summary":"스와이퍼 타입 단건 등록","description":"## 기능설명\n* 스와이퍼 타입을 등록하는 API 입니다.\n---\n## 상세설명\n* 필수 값 목록\n    * 스와이퍼 타입 ID\n    * 스와이퍼 타입명\n    * 스와이퍼 타입 설명\n    * 사용여부\n    * 스와이퍼 타입 대상 정보 목록\n    * 등록자ID\n    * 수정자ID\n---\n## 코드정리\n* ``` 사용여부 ``` : Y, N\n","operationId":"registerSwiperType","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SwiperType"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}}}}}}}
````

## 스와이퍼 타입 목록 삭제

> \## 기능설명\
> \* 스와이퍼 타입 목록을 삭제하는 API 입니다.\
> \---\
> \## 상세설명\
> \* 필수 값 목록\
> &#x20;   \* 스와이퍼 타입 번호<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":{"SwiperType":{"type":"object","description":"스와이퍼 타입 기본","properties":{"swiperTypNo":{"type":"string","description":"스와이퍼 타입 번호"},"swiperTypId":{"type":"string","description":"스와이퍼 타입 ID"},"swiperTypNm":{"type":"string","description":"스와이퍼 타입명"},"swiperTypDesc":{"type":"string","description":"스와이퍼 타입 설명"},"useYn":{"type":"string","description":"사용여부"},"swiperTypeTargetList":{"type":"array","description":"스와이퍼 타입 대상 정보 목록","items":{"$ref":"#/components/schemas/SwiperTypeTarget"}},"swiperTypeTgtNmStr":{"type":"string","description":"스와이퍼 타입 대상 정보 문자열"}}},"SwiperTypeTarget":{"type":"object","description":"스와이퍼 타입 대상 정보","properties":{"swiperTypNo":{"type":"string","description":"스와이퍼 타입 번호"},"swiperTgtCd":{"type":"string","description":"스와이퍼대상코드(DP005)"},"dispSeq":{"type":"integer","format":"int32","description":"전시순서","minimum":1},"swiperTgtCnt":{"type":"integer","format":"int32","description":"스와이퍼대상수","maximum":999,"minimum":1}}},"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":{"/v1/display/swiperType":{"delete":{"tags":["스와이퍼 타입 관리"],"summary":"스와이퍼 타입 목록 삭제","description":"## 기능설명\n* 스와이퍼 타입 목록을 삭제하는 API 입니다.\n---\n## 상세설명\n* 필수 값 목록\n    * 스와이퍼 타입 번호\n","operationId":"deleteSwiperTypeList","requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SwiperType"}}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}}}}}}}
```

## 매핑된 스와이퍼 타입 목록 조회

> \## 기능설명\
> \* 매핑된 스와이퍼 타입 목록을 조회하는 API 입니다.\
> \---\
> \## 상세설명\
> \* 필수 값 목록\
> &#x20;   \* 스와이퍼 타입 번호 목록<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":{"ResponseListSwiperType":{"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":{"$ref":"#/components/schemas/SwiperType"}},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"SwiperType":{"type":"object","description":"스와이퍼 타입 기본","properties":{"swiperTypNo":{"type":"string","description":"스와이퍼 타입 번호"},"swiperTypId":{"type":"string","description":"스와이퍼 타입 ID"},"swiperTypNm":{"type":"string","description":"스와이퍼 타입명"},"swiperTypDesc":{"type":"string","description":"스와이퍼 타입 설명"},"useYn":{"type":"string","description":"사용여부"},"swiperTypeTargetList":{"type":"array","description":"스와이퍼 타입 대상 정보 목록","items":{"$ref":"#/components/schemas/SwiperTypeTarget"}},"swiperTypeTgtNmStr":{"type":"string","description":"스와이퍼 타입 대상 정보 문자열"}}},"SwiperTypeTarget":{"type":"object","description":"스와이퍼 타입 대상 정보","properties":{"swiperTypNo":{"type":"string","description":"스와이퍼 타입 번호"},"swiperTgtCd":{"type":"string","description":"스와이퍼대상코드(DP005)"},"dispSeq":{"type":"integer","format":"int32","description":"전시순서","minimum":1},"swiperTgtCnt":{"type":"integer","format":"int32","description":"스와이퍼대상수","maximum":999,"minimum":1}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}}}},"paths":{"/v1/display/swiperType/swiperTypNo":{"get":{"tags":["스와이퍼 타입 관리"],"summary":"매핑된 스와이퍼 타입 목록 조회","description":"## 기능설명\n* 매핑된 스와이퍼 타입 목록을 조회하는 API 입니다.\n---\n## 상세설명\n* 필수 값 목록\n    * 스와이퍼 타입 번호 목록\n","operationId":"getMappedSwiperTypeList","parameters":[{"name":"swiperTypNoList","in":"query","description":"스와이퍼 타입 번호 목록","required":true,"schema":{"type":"array"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseListSwiperType"}}}}}}}}}
```


---

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