4.Bank Methods

List Bank Methods

GET {{MemberBaseAddress}}/api/paywall/member/bankaccount

Important: To use the member service, you need to send the 'apikeypublic' and 'apiclientpublic' parameters in the 'Header' field.

MemberAPI Address

The Header information sent to the service is as follows:

ParameterTypeMandatoryDescription

apikeypublic

string

Yes

The Public Key obtained from the member business panel.

apiclientpublic

string

Yes

The Public Client acquired from the member business panel.

memberid

int

Yes

The member's ID information in the Paywall.

The parameters returned from the service are as follows:

ParameterTypeDescription

ErrorCode

int

Error code. It returns '0' if the operation is successful.

Result

bool

It returns a 'true' or 'false' value. If the operation is successful, it returns 'true'.

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