Transactions
Wallet Mutation Detail
Read one wallet ledger movement.
Modified at Apr 28, 2026, 05:38 AM UTC
GET/api/mutation/{id}wallet.ledger.read
Returns one wallet ledger movement by ID.
Request
curl "https://cekceir.online/api/mutation/{id}" \
-H "Authorization: Bearer <api_key>" \Request Fields
| Field | Type | Required | Description |
|---|---|---|---|
| Authorization | header string | Yes | Bearer token header in the format Bearer <api_key>. |
| id | path positive integer | Yes | Wallet mutation ID. |
Success Response
{ "data": { "id": 8801, "reference_transaction_id": 654, "type": "debit", "reason": "order", "amount": 1500, "balance_after": 98500, "note": "Final capture", "created_at": "2026-04-26T00:00:01.000Z", "related_order_id": 321, "related_deposit_id": null, "related_transfer_id": null }}Response Fields
| Field | Type | Required | Description |
|---|---|---|---|
| data.id | number | Yes | Mutation ID. |
| data.reference_transaction_id | number | Yes | Related transaction ID. |
| data.type | string | Yes | Mutation type, such as credit or debit. |
| data.reason | string | Yes | Mutation reason. |
| data.amount | number | Yes | Mutation amount. |
| data.balance_after | number | Yes | Wallet balance after this mutation. |
| data.note | string or null | No | Mutation note when available. |
| data.created_at | ISO datetime | Yes | Mutation creation time. |
| data.related_order_id | number or null | No | Related order ID when applicable. |
| data.related_deposit_id | number or null | No | Related deposit ID when applicable. |
| data.related_transfer_id | number or null | No | Related transfer ID when applicable. |