---
title: "List Account's Events"
method: GET
path: "/plug/accounts/{accountId}/events"
tags: ["Accounts"]
---

# List Account's Events

`GET /plug/accounts/{accountId}/events`

This endpoint allows you to view the event history for an account. For example, you can query this endpoint to find out when an account was created and who it was created by. This endpoint is pageable.

This endpoint supports [Sandbox Mode](https://docs.arcadia.com/docs/sandbox-testing).

## Path parameters

- `accountId` string, required

## Query parameters

- `search` string
- `page` integer
- `size` integer
- `sort` string[]

## Headers

- `Arcadia-Version` string, required

## Response `200`

OK

- PagedPublicAccountEventResource
  - `accountEvents` PublicAccountEventResource[], required — Events associated with the account, such as when the value of a field changes etc.
    - `createdAt` string, date-time, required — The date-time this event occurred.
    - `createdBy` string, required — The user or system that initiated the event.
    - `eventType` 'CONNECTION_REQUEST_SUBMITTED' | 'STATEMENTS_PRODUCT_ACTIVATED' | 'STATEMENTS_PRODUCT_DEACTIVATED' | 'ACCOUNT_UPDATED' | 'ACCOUNT_CUSTOM_DATA_UPDATED' | 'ACCOUNT_CREATED', required — The type of event that occurred.
    - `fieldName` string, nullable, required — For custom data changes, represents which custom data field was modified.
    - `id` string, required — A unique identifier for the event.
    - `newValue` string, nullable, required — For custom data changes, represents the newly assigned value of the field.
    - `oldValue` string, nullable, required — For custom data changes, represents the previous value of the field.
  - `page` PageMetadata, required — Specifies which page of results to return; this is 0-indexed
    - `number` integer, required
    - `size` integer, required
    - `totalElements` integer, required
    - `totalPages` integer, required

---

[API](https://skmtc.net/arcadia/apis/plug-api.md) · [All operations](https://skmtc.net/arcadia/apis/plug-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/arcadia/plug-api/revisions/d00587742116/schema)
