1. Account/Balance Check

You can view your account/balance details on the provider side connected to PayWall for card production (if available).

Account/Balance Check

GET {{Base Address}}/api/paywall/card/production/balance

Yukarıda verilmiş olan adrese istek atmanız yeterli olacaktır. Test ortamı ve Gerçek ortam için 'Base Address' istediğiniz gibi kullanabilirsiniz.

Important: To use the Card Issuance Provider - Account/Balance Check service, you need to include the 'apikeyprivate' and 'apiclientprivate' parameters in the 'Header' field. PaymentAPI Address

The header information that needs to be sent to the service is as follows:

ParameterTypeMandatoryDescription

apikeyprivate

string

Yes

The Private Key obtained from the merchant panel.

apiclientprivate

string

Yes

The Private Client obtained from the merchant panel.

cardproductionkey

int

Yes

The key information associated with the connected provider.

The response from the service:

ParameterTypeDescription

Body

object

JSON containing details about the account/balance information (optional).

ErrorCode

int

Error code. If the operation is successful, it returns the value '0'.

Result

bool

It returns a value of either "true" or "false." If the operation is successful, it returns "true."

Message

string

If the operation is in error, this message specifies the error and provides language support based on the "locale" parameter.

{
    "ErrorCode": 0,
    "Result": true,
    "Message": "",
    "Body": {
        "Balances": [
            {
                "TotalBalance": 249961.82,
                "LockedBalance": 0.0,
                "AvailableBalance": 249961.82
            }
        ],
        "ProviderDump": "{PROVIDERJSONDUMP}",
        "ProviderHttpStatus": 200,
        "ProviderConnectedId": 17,
        "ProviderId": 2,
        "ProviderKey": "ProviderKey",
        "CurrencyId": 1
    }
}

Last updated