3.Delete Bank Method

Delete Bank Method

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

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

MemberAPI Address

ParameterTypeMandatoryDescription

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:

parameterTypemandatorydescription

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:

ParameterTypeDescription

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