Overview
Content Change Activity
Returns paginated wallet activity entries specifically for content-change checks. Use this when tracking debits/credits related only to content-change operations.
Endpoint
GET
https://snapshot-api.mindiqglobal.com/api/v1/activity/content-changesQuery Parameters
| Name | Required | Type | Default | Description |
|---|---|---|---|---|
| page | No | integer | 0 | Zero-based page index. |
| size | No | integer | 20 | Number of records per page. |
| sort | No | string | createdAt,desc | Sorting format: `field,direction`. |
| from | No | datetime | None | Inclusive start datetime in ISO-8601 format. |
| to | No | datetime | None | Inclusive end datetime in ISO-8601 format. |
Success Response
{
"content": [
{
"transactionType": "DEBIT",
"referenceType": "CONTENT_CHANGE",
"referenceId": "801",
"amount": 1,
"balanceBefore": 120,
"balanceAfter": 119,
"status": "SUCCESS",
"description": "Activity transaction",
"createdAt": "2026-08-06T08:00:00Z"
}
],
"page": 0,
"size": 20,
"totalElements": 1,
"totalPages": 1
}Response Body Parameters
| Name | Type | Description |
|---|---|---|
| content | array | Content-change activity records. |
| content[].transactionType | enum | Credit/debit direction. Possible values: `DEBIT`, `CREDIT`. |
| content[].referenceType | enum | Reference type for this endpoint. Expected value: `CONTENT_CHANGE`. |
| content[].referenceId | string | Transaction reference identifier. |
| content[].amount | number | Transaction amount. |
| content[].balanceBefore | number | Wallet balance before transaction. |
| content[].balanceAfter | number | Wallet balance after transaction. |
| content[].status | string | Transaction status (example: `SUCCESS`). |
| content[].description | string | Transaction description. |
| content[].createdAt | datetime | Transaction timestamp in ISO-8601 format. |
| page | integer | Current page index. |
| size | integer | Page size. |
| totalElements | integer | Total number of records. |
| totalPages | integer | Total number of pages. |