Webhooks
Update Webhook
Switchwallet provides our merchants with a webhook payload when a deposit or withdrawal is made on our system.
Updates webhook url
PUT
https://development.switchwallet.io/api/v1/merchant/webhook
Headers
Authorization*
ApiKey {{SecretKey}}
Request Body
webhookUrl*
https://webhook.site
publicKey
YOUR_PUBLIC_KEY
Deposit Payload
This is the payload you'll receive when a deposit is being made to your generated wallet address.
transactionType
enum
This is the different type of transactions on the system. Values are Deposit = 1
, Withdrawal
,Transfer
, MerchantDeposit
and Remittance
.
data
object
This is the object having the main properties of the transaction.
checksum
string
This is a hash property of the data for security validations.
amount
decimal
The amount deposited from a client or external address.
charge
decimal
The amount charged by us for the transaction.
totalAmountDeposited
decimal
This is the total of the amount and charge on this transaction.
depositAddress
string
This is the wallet address of the client sending funds from.
receieveAddress
string
This is the wallet address of the merchant who is receiveing the funds.
currency
enum
This is the currency of the transaction.Values are BUSD, LTC, BNB, DAI, USDT, XEND, WNT.
networkChain
enum
This is the network chain of the currencies. Values are BSC, ETH, POLYGON, CELO, ARBITRUM, AVALANCHE, HECOCHAIN.
status
enum
This is the status of the transaction. Values are NOT_REFELECTED, PENDING, CONFIRMED, FAILED, NOT_PROPAGATED.
merchantClient
object
This has the email address of the merchant client as a property.
string
This is the email of the the merchant client.
transactionalHash
string
This is the transactional hash of the transaction on the blockchain.
Withdrawal Payload
This is the payload you'll receive when a withdrawal is being made from your generated wallet.
transactionType
enum
This is the different type of transactions on the system. Values are Deposit = 1
, Withdrawal
,Transfer
, MerchantDeposit
and Remittance
.
data
object
This is the object having the main properties of the transaction.
checksum
string
This is a hash property of the data for security validations.
receieverAddress
string
This is the wallet address where the funds is being withdrawn to.
amountRequested
decimal
This is the amount requested to be withdrawn.
amountSent
decimal
This is the amount sent minus the charge.
charge
decimal
The amount charged by us for the transaction.
totalAmountWithdrawn
decimal
This is the total amount and charge on this transaction.
currency
enum
This is the currency of the transaction.Values are BUSD, LTC, BNB, DAI, USDT, XEND, WNT.
networkChain
enum
This is the network chain of the currencies. Values are BSC, ETH, POLYGON, CELO, ARBITRUM, AVALANCHE, HECOCHAIN.
status
enum
This is the status of the transaction. Values are NOT_REFELECTED, PENDING, CONFIRMED, FAILED, NOT_PROPAGATED.
merchantClient
object
This has the email address of the merchant client as a property.
string
This is the email address of the merchant client.
transactionalHash
string
This is the transactional hash of the transaction on the blockchain.
merchantReference
string
This is a unique reference on the system.
Last updated