POST
/
wallets
/
history
Wallet History
curl --request POST \
  --url https://waas-staging.embedly.ng/api/v1/wallets/history \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "customerId": "<string>",
  "organizationId": "<string>",
  "walletId": "<string>",
  "from": "<string>",
  "to": "<string>"
}'
{
	"code": "00",
	"success": true,
	"message": "Fetched Successfully",
	"data": {
		"walletHistories": [
			{
				"id": "cf931239-6b95-11f0-8d44-4af84d9ff6f1",
				"walletId": "be342aca-4de7-11f0-a6de-7c1e52753c35",
				"productId": "ed67af6f-6895-11f0-8d44-4af84d9ff6f1",
				"remarks": "NIP-",
				"amount": 900,
				"debitCreditIndicator": "D",
				"balance": 40,
				"transactionReference": "EMBa95822675312343a687fe4b41336bbfea",
				"transactionId": "EMBa95822675312343a687fe4b41336bbfea",
				"isActive": true,
				"dateCreated": "2025-07-28T09:32:42",
				"mobileNumber": "09030355073",
				"accountNumber": "9710131061",
				"name": null
			}
		],
		"totalCount": 1,
		"totalPages": 1,
		"currentPage": 1,
		"pageSize": 50
	}
}

Request Body

customerId
string
required
Unique identifier for the customer. Example: “3fa85f64-5717-4562-b3fc-2c963f66afa6”
organizationId
string
required
Unique identifier for the organization. Example: “3fa85f64-5717-4562-b3fc-2c963f66afa6”
walletId
string
required
Unique identifier for the wallet. Example: “3fa85f64-5717-4562-b3fc-2c963f66afa6”
from
string
required
Start date and time for the query period. Example: “2025-03-19T16:18:37.676Z”
to
string
required
End date and time for the query period. Example: “2025-03-19T16:18:37.676Z”
{
	"code": "00",
	"success": true,
	"message": "Fetched Successfully",
	"data": {
		"walletHistories": [
			{
				"id": "cf931239-6b95-11f0-8d44-4af84d9ff6f1",
				"walletId": "be342aca-4de7-11f0-a6de-7c1e52753c35",
				"productId": "ed67af6f-6895-11f0-8d44-4af84d9ff6f1",
				"remarks": "NIP-",
				"amount": 900,
				"debitCreditIndicator": "D",
				"balance": 40,
				"transactionReference": "EMBa95822675312343a687fe4b41336bbfea",
				"transactionId": "EMBa95822675312343a687fe4b41336bbfea",
				"isActive": true,
				"dateCreated": "2025-07-28T09:32:42",
				"mobileNumber": "09030355073",
				"accountNumber": "9710131061",
				"name": null
			}
		],
		"totalCount": 1,
		"totalPages": 1,
		"currentPage": 1,
		"pageSize": 50
	}
}