# Get operation log overview

Summarize operation-record counts for the current identity in the current workspace, so you can quickly see the counts of successful and failed operations. This API does not return individual operation records and does not support filters.

```text
GET $CLOUDSIGMA_API_BASE/audit/logs/overview
```

## Before you call this API

Configure the [regional API endpoint and authentication](https://omnifabric.cloudsigma.com/docs/developer/endpoints-and-authentication.html.md), and select the target workspace.

## Query parameters

:::::::{div} mo-api-tabs
::::::{tab-set}
:::::{tab-item} Input example

```bash
curl "$CLOUDSIGMA_API_BASE/audit/logs/overview" \
  -H "X-API-Key: $CLOUDSIGMA_API_KEY" \
  -H "X-Workspace-ID: $WORKSPACE_ID"
```

:::::
:::::{tab-item} Parameter description

This API accepts no additional query parameters.

:::::
::::::
:::::::

## Success response

On success, the API returns a summary of operation records for the current identity.

:::::::{div} mo-api-tabs mo-api-response-tabs
::::::{tab-set}
:::::{tab-item} Response example

```json
{
  "code": "OK",
  "msg": "OK",
  "data": {
    "total": 3,
    "success": 2,
    "failed": 1
  }
}
```

:::::
:::::{tab-item} Field details

| Field | Type | Description |
| --- | --- | --- |
| code | string | `OK` on success. |
| msg | string | `OK` on success. |
| data.total | integer | Total number of operation records. |
| data.success | integer | Number of successful operations. |
| data.failed | integer | Number of failed operations. |

:::::
::::::
:::::::

## Error response

:::::::{div} mo-api-tabs mo-api-response-tabs
::::::{tab-set}
:::::{tab-item} Response example

```json
{
  "code": "ErrServer",
  "msg": "Internal server error",
  "data": null
}
```

:::::
:::::{tab-item} Field details

| Field | Type | Description |
| --- | --- | --- |
| code | string | Error code. |
| msg | string | Error message. |
| data | null | — |

:::::
::::::
:::::::

## Next steps

To inspect individual operations, [list operation logs](https://omnifabric.cloudsigma.com/docs/reference/api/ai-studio/monitoring/list-operation-logs.html.md#filter-operation-logs).
