> For the complete documentation index, see [llms.txt](https://tech.x2bee.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tech.x2bee.com/api/api-en/back-office-api-reference/system-bo-api/open-api-history-lookup.md).

# Open API History Lookup

## Retrieve Open API History

> \## Function Description\
> \* Retrieves OpenAPI history matching the call date, work area, vendor number, status, API name, and API URL type passed from the screen.\
> \---\
> \## Detailed Description\
> \* Retrieves OpenAPI history matching the call date, work area, vendor number, status, API name, and API URL type passed from the screen.\
> \---\
> \## Revision History\
> \* Release v2.00\_240826: New development<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 History Retrieval DTO","properties":{"rowsPerPage":{"type":"integer","format":"int32","description":"Records per Page","maximum":100},"pageIdx":{"type":"integer","format":"int32","description":"Page","minimum":1},"selectTerm":{"type":"string","description":"Recent Period"},"srhStrCaloDate":{"type":"string","format":"date","description":"Call Start Date"},"srhEndCaloDate":{"type":"string","format":"date","description":"Call End Date"},"jobAreaGbCd":{"type":"string","description":"Business Area Type Code (CM036)"},"entrNo":{"type":"string","description":"Vendor No."},"procStatus":{"type":"string","description":"Processing Status"},"connIpAddr":{"type":"string","description":"Access IP Address"},"openApiNm":{"type":"string","description":"OpenAPI Name"},"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 History Retrieval Response DTO","properties":{"totalCnt":{"type":"integer","format":"int32","description":"Total Count"},"openApiLogSeq":{"type":"string","description":"OpenAPI Log Sequence No."},"entrNo":{"type":"string","description":"Vendor No."},"entrNm":{"type":"string","description":"Vendor Name"},"jobAreaGbCd":{"type":"string","description":"Business Area Type Code (CM036)"},"openApiNm":{"type":"string","description":"OpenAPI Name"},"openApiUrl":{"type":"string","description":"OpenAPI URL"},"connIpAddr":{"type":"string","description":"Access IP Address"},"caloDtm":{"type":"string","format":"date-time","description":"Call Date/Time"},"procStatus":{"type":"string","description":"Processing Status"},"exeTm":{"type":"number","description":"Execution Time"}}},"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 History Lookup"],"summary":"Retrieve Open API History","description":"## Function Description\n* Retrieves OpenAPI history matching the call date, work area, vendor number, status, API name, and API URL type passed from the screen.\n---\n## Detailed Description\n* Retrieves OpenAPI history matching the call date, work area, vendor number, status, API name, and API URL type passed from the screen.\n---\n## Revision History\n* Release v2.00_240826: New development\n","operationId":"getOpenApiLogList","parameters":[{"name":"openApiLogRequest","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OpenApiLogRequest"}},{"name":"pageIdx","in":"query","description":"Current Page","required":true,"schema":{"type":"String"}},{"name":"rowsPerPage","in":"query","description":"Rows per Page","required":true,"schema":{"type":"String"}}],"responses":{"200":{"description":"Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/RealGridListResponseOpenApiLogResponse"}}}},"900":{"description":"Business processing error details","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```

## Retrieve Open API Parameter Popup

> \## Function Description\
> \* Retrieves the OpenAPI request parameters matching the OpenAPI log sequence number passed from the screen.\
> \---\
> \## Detailed Description\
> \* Retrieves the OpenAPI request parameters matching the OpenAPI log sequence number passed from the screen.\
> \---\
> \## Revision History\
> \* Release v2.00\_240826: New development<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 Parameter Retrieval DTO","properties":{"openApiLogSeq":{"type":"string","description":"OpenAPI Log Sequence No."}}},"OpenApiLogParameterResponse":{"type":"object","description":"Open API Parameter Retrieval Response DTO","properties":{"reqPrmtJson":{"type":"string","description":"Request Parameter JSON"},"rplyConts":{"type":"string","description":"Response Content"},"errorConts":{"type":"string","description":"Error Details"}}},"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 History Lookup"],"summary":"Retrieve Open API Parameter Popup","description":"## Function Description\n* Retrieves the OpenAPI request parameters matching the OpenAPI log sequence number passed from the screen.\n---\n## Detailed Description\n* Retrieves the OpenAPI request parameters matching the OpenAPI log sequence number passed from the screen.\n---\n## Revision History\n* Release v2.00_240826: New development\n","operationId":"getOpenApiParameter","parameters":[{"name":"openApiLogParameterRequest","in":"query","required":true,"schema":{"$ref":"#/components/schemas/OpenApiLogParameterRequest"}}],"responses":{"200":{"description":"Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/OpenApiLogParameterResponse"}}}},"900":{"description":"Business processing error details","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```
