ProvBratnet.UpdatePayments Method
Updates payment information for an invoice by sending the payment method to AADE. Requires Basic Auth client credentials.
This language is not supported or no code example is available.
This language is not supported or no code example is available.
Parameters
-
pay
-
payment
Return Value
Dictionary<
string,
string>
var bra = new ProvBratnet("BratnetUser", "BratnetPassword", "bratnetAPIKey", "arbUser", "arbKey", false);
ProvBratnet.payment pay = bra.newPayment;
pay.transactionId = transactionID;
pay.paymentType = 7;
pay.hsignature = "3046022100DCA112702F38B015BDADB91F9D46454BB468B66EE859173C81B841"; // signs("response.hSignature")
pay.uid = "D123FCA456D7F8901F2CA34567BC8B901FA7F23B";
Dictionary<string, string> result = bra.UpdatePayments(pay);
This language is not supported or no code example is available.
Dim bra As ProvBratnet = New ProvBratnet("BratnetUser", "BratnetPassword", "bratnetAPIKey", "arbUser", "arbKey", False)
Dim pay As ProvBratnet.payment = bra.newPayment
pay.transactionId = transactionID
pay.paymentType = 7
pay.hsignature = "3046022100DCA112702F38B015BDADB91F9D46454BB468B66EE859173C81B841" 'signs("response.hSignature")
pay.uid = "D123FCA456D7F8901F2CA34567BC8B901FA7F23B"
Dim result As Dictionary(Of String, String) = bra.UpdatePayments(pay)
This language is not supported or no code example is available.
.NET Framework
Supported in: 3.5 or newer