---
title: "Get customer changes events"
method: GET
path: "/api/external/v2/changelogs/customers"
tags: ["Changelogs"]
---

# Get customer changes events

`GET /api/external/v2/changelogs/customers`

Returns the list of changes based on the provided `start_date`.
If no `start_date` is provided it returns the oldest set of recorded changes.
Changes for the last 4 weeks are retained. The items will be returned using
`processed_at` in ASC order (oldest first).


> ℹ️
> This endpoint requires one of the following scopes: `customers:all`, `customers:readonly`

## Query parameters

- `cursor` string
- `limit` integer
- `start_date` string, date-time

## Response `200`

A list of customer changes

- object
  - `items` object[], required
    - `id` integer, required — Unique identifier of the customer record
    - `operation` 'insert' | 'update' | 'delete', required
    - `processed_at` string, date-time, required — Timestamp when the event arrived in the change log pipeline
    - `updated_at` string, date-time, required — Timestamp when the record was updated in the database (can vary due to data restoration)
    - `created_at` string, date-time, required — Timestamp when the record was initially created
  - `has_more` boolean, required — Indicates whether additional results are available beyond this set. Use this flag to determine if another request is needed.
  - `next_cursor` string, nullable, required — Cursor to retrieve the next set of results. Include this value in the cursor parameter of your next request to fetch subsequent items. A `null` `next_cursor` in the response indicates no further results.

## Other responses

- `400` — Bad request
- `401` — Access token is missing or invalid
- `403` — Access to this resource forbidden
- `404` — The resource was not found
- `422` — Unprocessable content
- `500` — Internal server error

---

[API](https://skmtc.net/pennylane/apis/company-v2.md) · [All operations](https://skmtc.net/pennylane/apis/company-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pennylane/company-v2/versions/a5b7236473c6/schema)
