3.Delete Bank Method
Delete Bank Method
DELETE
{{MemberBaseAddress}}/api/paywall/member/bankaccount
apikeypublic
string
Yes
The Public Key obtained from the merchant panel.
apiclientpublic
string
Yes
The Public Client obtained from the merchant panel.
The parameters that need to be sent to the service are as follows:
Id
int
Yes
The Id information of the bank method in Paywall.
Sample to be sent to the service JSON and sample codes is as follows
{
"Id": 23
}
The parameters returned from the service are as follows:
ErrorCode
int
Error code. It returns '0' if the operation is successful.
Result
bool
It returns a 'true' or 'false' value. It returns 'true' if the operation is successful.
Message
string
If the operation is unsuccessful, it provides a message related to this error and offers language support based on the locale parameter.
Body
object
The transaction details
{
"ErrorCode": 0,
"Result": true,
"Message": "",
"Body": null
}
Last updated