# Open Api 이력 조회

## Open API 이력 조회

> \## 기능설명\
> \* 화면에서 넘어온 호출일자, 업무영역, 협력사번호, 상태, API명, API URL 구분에 맞는 OpenAPI 이력을 조회합니다.\
> \---\
> \## 상세설명\
> \* 화면에서 넘어온 호출일자, 업무영역, 협력사번호, 상태, API명, API URL 구분에 맞는 OpenAPI 이력을 조회합니다.\
> \---\
> \## 수정번호\
> \* Release v2.00\_240826: 신규 개발<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":{"OpenApiLogRequest":{"type":"object","description":"Open Api 이력 조회 DTO","properties":{"rowsPerPage":{"type":"integer","format":"int32","description":"페이지당 건수","maximum":100},"pageIdx":{"type":"integer","format":"int32","description":"페이지","minimum":1},"selectTerm":{"type":"string","description":"최근기간"},"srhStrCaloDate":{"type":"string","format":"date","description":"시작호출일자"},"srhEndCaloDate":{"type":"string","format":"date","description":"종료호출일자"},"jobAreaGbCd":{"type":"string","description":"업무영역구분코드(CM036)"},"entrNo":{"type":"string","description":"협력사번호"},"procStatus":{"type":"string","description":"처리상태"},"connIpAddr":{"type":"string","description":"접속IP 주소"},"openApiNm":{"type":"string","description":"OpenAPI명"},"openApiUrl":{"type":"string","description":"OpenAPI URL"}}},"RealGridListResponseOpenApiLogResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/OpenApiLogResponse"}}}},"OpenApiLogResponse":{"type":"object","description":"Open Api 이력 조회 응답 DTO","properties":{"totalCnt":{"type":"integer","format":"int32","description":"총 건수"},"openApiLogSeq":{"type":"string","description":"OpenAPI 로그순번"},"entrNo":{"type":"string","description":"협력사번호"},"entrNm":{"type":"string","description":"협력사명"},"jobAreaGbCd":{"type":"string","description":"업무영역구분코드(CM036)"},"openApiNm":{"type":"string","description":"OpenAPI명"},"openApiUrl":{"type":"string","description":"OpenAPI URL"},"connIpAddr":{"type":"string","description":"접속IP 주소"},"caloDtm":{"type":"string","format":"date-time","description":"호출일시"},"procStatus":{"type":"string","description":"처리상태"},"exeTm":{"type":"number","description":"수행시간"}}},"Response":{"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":{"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/system/openApiLog/getOpenApiLogList":{"get":{"tags":["Open Api 이력 조회"],"summary":"Open API 이력 조회","description":"## 기능설명\n* 화면에서 넘어온 호출일자, 업무영역, 협력사번호, 상태, API명, API URL 구분에 맞는 OpenAPI 이력을 조회합니다.\n---\n## 상세설명\n* 화면에서 넘어온 호출일자, 업무영역, 협력사번호, 상태, API명, API URL 구분에 맞는 OpenAPI 이력을 조회합니다.\n---\n## 수정번호\n* Release v2.00_240826: 신규 개발\n","operationId":"getOpenApiLogList","parameters":[{"name":"openApiLogRequest","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OpenApiLogRequest"}},{"name":"pageIdx","in":"query","description":"현재 페이지","required":true,"schema":{"type":"String"}},{"name":"rowsPerPage","in":"query","description":"페이지 당 row","required":true,"schema":{"type":"String"}}],"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/RealGridListResponseOpenApiLogResponse"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```

## Open API 파라미터 조회 팝업

> \## 기능설명\
> \* 화면에서 넘어온 OpenAPI 로그순번에 맞는 OpenAPI 요청 파라미터를 조회합니다.\
> \---\
> \## 상세설명\
> \* 화면에서 넘어온 OpenAPI 로그순번에 맞는 OpenAPI 요청 파라미터를 조회합니다.\
> \---\
> \## 수정번호\
> \* Release v2.00\_240826: 신규 개발<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":{"OpenApiLogParameterRequest":{"type":"object","description":"Open Api 파라미터 조회 DTO","properties":{"openApiLogSeq":{"type":"string","description":"OpenAPI 로그순번"}}},"OpenApiLogParameterResponse":{"type":"object","description":"Open Api 파라미터 조회 응답 DTO","properties":{"reqPrmtJson":{"type":"string","description":"요청파라미터 JSON"},"rplyConts":{"type":"string","description":"응답내용"},"errorConts":{"type":"string","description":"오류내용"}}},"Response":{"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":{"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/system/openApiLog/getOpenApiParameter":{"get":{"tags":["Open Api 이력 조회"],"summary":"Open API 파라미터 조회 팝업","description":"## 기능설명\n* 화면에서 넘어온 OpenAPI 로그순번에 맞는 OpenAPI 요청 파라미터를 조회합니다.\n---\n## 상세설명\n* 화면에서 넘어온 OpenAPI 로그순번에 맞는 OpenAPI 요청 파라미터를 조회합니다.\n---\n## 수정번호\n* Release v2.00_240826: 신규 개발\n","operationId":"getOpenApiParameter","parameters":[{"name":"openApiLogParameterRequest","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OpenApiLogParameterRequest"}}],"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/OpenApiLogParameterResponse"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```


---

# 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/system-bo-api/open-api-1.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.
