Skip to main content

List OpenAPI Invocation Logs

List OpenAPI invocation logs for the current organization with pagination. This API does not require Audit module permissions, but AccessKey authentication is required.

Endpoint: /openapi/v1/openApiLog/list

Method: GET

Request parameters

ParameterTypeRequiredDescription
accountIdStringNoAccount ID. Omit it to query all accounts.
startTimeDateTimeNoStart of the invocation time range in ISO 8601 format.
endTimeDateTimeNoEnd of the invocation time range in ISO 8601 format.
apiStringNoAPI path keyword for fuzzy matching, for example, /openapi/v1/datasource/list.
currentIntegerNoCurrent page number, starting at 1. Default: 1.
pageSizeIntegerNoRecords per page. Default: 10; maximum: 1000.

Response parameters

ParameterTypeDescription
successBooleanWhether the request succeeded.
requestIdStringRequest ID.
currentIntegerCurrent page.
pageSizeIntegerPage size.
totalIntegerTotal number of records.
dataArrayInvocation log details.
data[].requestIdStringRequest ID.
data[].requestTimeDateTimeRequest time.
data[].accessKeyIdStringCaller AccessKey ID.
data[].accountIdStringAccount ID.
data[].orgIdStringOrganization ID.
data[].apiStringInvoked API path.
data[].statusBooleanWhether the invocation succeeded.
data[].detailStringInvocation detail.

Success response

{
"success": true,
"requestId": "<requestId>",
"current": 1,
"pageSize": 10,
"total": 1,
"data": [{
"requestId": "<logRequestId>",
"requestTime": "2026-08-05T09:00:00Z",
"accessKeyId": "<accessKeyId>",
"accountId": "<accountId>",
"orgId": "<orgId>",
"api": "/openapi/v1/now",
"status": true,
"detail": null
}]
}