IPN - Deposit

IPNs (Instant Payment Notifications) are sent to the notify_url provided by merchants when deposit is received.

🚧

1.Notification sent by gateway is in POST Method.
2.Body is a JSON-formatted string (content-Type: application/json)

Depost Status

IndexEventStatusDescription
1deposit_createdCONFIRMINGThe deposit request has been created and is awaiting confirmation.
3deposit_confirmedCONFIRMEDThe deposit has been confirmed and validated.
4deposit_creditedCREDITEDThe deposited amount has been successfully credited.

Example - Bank Deposit

{
	"ipn_type": "deposit",
	"event": "deposit_created",
	"deposit_id": "74a542b4-1bb4-4852-ba4e-4b9d8a85a773",
	"network": "BANK_SEPA",
	"asset_type": "EUR",
	"amount": 1600.00,
	"fee": 21.00,
	"transfer_method": "BANK",
	"detail": {
		"network": "BANK_SEPA",
		"asset_type": "EUR",
		"amount": 1600.00,
		"sender_name": "Tom J",
		"sender_account_number": null,
		"sender_iban": "BE44977103489145",
		"beneficiary_name": "UAB UniPayment",
		"beneficiary_account_number": null,
		"beneficiary_iban": "CH8608799927511765814",
		"reference": "AC0001",
		"remote_transaction_id": "437788"
	},
	"status": "CONFIRMING",
	"create_time": "2025-05-02T01:57:06.5566277Z",
	"update_time": "2025-05-02T01:57:06.5566281Z",
	"notify_id": "111c1988-ff14-48ff-85d3-fa0fc22c977d",
	"notify_time": "2025-05-02T01:57:06.5776076Z"
}

Example - Crypto Deposit

{
	"ipn_type": "deposit",
	"event": "deposit_created",
	"deposit_id": "3fd4cca0-3bc6-4dad-81d5-01d4a4c377f9",
	"network": "NETWORK_BSC",
	"asset_type": "USDT",
	"amount": 5.0,
	"fee": 0.0,
	"transfer_method": "CRYPTO",
	"detail": {
		"network": "NETWORK_BSC",
		"asset_type": "USDT",
		"amount": 5.0,
		"from": "0x7E33856D1808161129Ef9BeF27E79c60F0c0ff74",
		"to": "0x4490A7d0DD7a2Aa9c5FDA9B4854E773e57c9A211",
		"hash": "0x7dc63d2a2c484489741dd5d66ce393b7cd56823d230d840c796e16a5c86798ce"
	},
	"status": "CONFIRMING",
	"create_time": "2025-05-02T02:13:17.1884268Z",
	"update_time": "2025-05-02T02:13:17.188427Z",
	"notify_id": "542b10e5-cbab-4065-8967-8084a5bd6f49",
	"notify_time": "2025-05-02T02:13:17.6391131Z"
}