Order Payment Confirmation
This sends a notification to the third-party application with a payload of the details of an acknowledged receipt of funds either from the third-party user to the provider or vice-versa using the POST
endpoint you provide. See an example and its payload properties meanings below.
CheckSum
string
This is a hash property signed with the merchant secretkey
.
Data
object
This holds the properties of the payload data details.
CustomerEmailAddress
string
This is the customer's email address.
LiquidityProviderName
string
This is the name of the liquidity provider.
OrderDetails
object
This is an object that holds the properties of the order details.
PayInCurrency
enum
This is the symbol of a particular currency used in paying for an order. Values range from NGN = 1
, USD = 2
, BUSD = 6
& XEND = 9
.
RecieveInCurrency
enum
This is the symbol of a particular currency used in receiving. Values range from NGN = 1
, USD = 2
, BUSD = 6
& XEND = 9
.
AmountPaidByCustomer
decimal
This is the amount paid by the customer.
AmountPaidToCustomer
decimal
This is the amount paid to the customer.
OrderReference
string
This is the reference value of an order.
OrderType
enum
This is the type of order made. It can either be a Buy
or Sell
.
OrderStatus
enum
This is the status of an order at a particular time. It can either be Submitted = 1
, Canceled = 2
, Acknowledge = 3
, FundedProvider = 4
, FundRecievedFromUser = 5
, FundedUser = 6
, Completed = 7
or OrderTimeOut = 8
.
OrderDisputeStatus
enum
This is the dispute status of an order. It can either be NoDispute, DisputeRaisedbyCustomer
, DisputeRaisedByProvider
, DisputeRaisedByBothParties
, DisputeResolved
or CouldNotResolve
.
PaidBy
enum
This is the entity by which the order is paid by. It could be the Customer = 1
or Provider = 2
.
PaymentMethod
enum
This is the payment method which is used in transacting. It can be Bank = 1
or Crypto = 2
.
PaymentDate
double
This is the date by which the payment was made in milliseconds.
RecepientAccountDetails
object
This holds the properties of the recepient's account details.
WalletAddress
string
This is the wallet address of the customer.
Network
string
This is the cryptocurrency network name.
Currency
string
This is the currency the order was transacted with.
TransactionMetaData
object
This is an object that holds the metadata of the transaction.
CryptoPaymentNetwork
string
This is the cryptocurrency network which was paid with.
CryptoTransactionHash
string
This is the security hash of a particular transaction in the network.
TransactionVerificationUrl
string
is is the url of the transaction. It's nullable.
Last updated