# Audit-events API Reference

> Source: https://centric-api-docs.certn.co/#audit-events

## Endpoints

| Method | Path | Description |
|--------|------|-------------|
| `GET` | `/api/public/audit-events/` |  |

### GET /api/public/audit-events/

Return audit subscription events for SIEM polling (commit-order, cursor-based).

``event_id`` is the per-customer ``publish_seq`` (commit-visibility sequence),
so events are delivered in ascending ``event_id`` order - which is commit
order, NOT ``event_datetime`` order. A late-committed row is appended at the
tail (higher ``publish_seq`` / ``event_id``) and delivered late but never
lost; consumers sort by ``event_datetime`` and dedupe on ``event_id``.

#### Parameters

| Name | In | Type | Required | Description |
|------|-----|------|----------|-------------|
| `event_type_id` | query | string | No |  |
| `source_system` | query | string | No |  |
| `target_id` | query | string | No |  |
| `target_type` | query | string | No |  |

#### Example Request

```bash
curl -X GET "https://api.sandbox.certn.co/api/public/audit-events/" \
  -H "Authorization: Api-Key YOUR_API_KEY"
```

---

*See the [interactive documentation](https://centric-api-docs.certn.co/#audit-events) for more details.*