2.Edit Bank Method

Edit Bank Method

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

Important: In order 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.

CurrencyId

int

Yes

The currency of the bank method to be added.

You can access all currencies from the system data.

Title

string

Yes

The recipient name associated with the IBAN in the bank method. It must be entered correctly.

Iban

string

Yes

The IBAN information for the bank method.

Sample to be sent to the service JSON and sample codes is as follows

{
    "Id": 24,
    "CurrencyId": 3,
    "Title": "MemberName Lastname",
    "Iban": "TR370006400000123456789876"
}

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 either true or false. It returns 'true' if the operation is successful.

Message

string

If the operation is unsuccessful, this is the message specified for the error, providing language support based on the 'locale' parameter.

Body

nesne

Transaction details

{
    "ErrorCode": 0,
    "Result": true,
    "Message": "",
    "Body": null
}

Last updated