5. Query

You can authorize PayWall through your own access credentials via supported PayOut providers and perform transaction query operations.

Transaction Inquiry

GET {{Base Address}}/api/paywall/payout/query

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 Payout - Transaction Inquiry service, you need to send the 'apikeyprivate' and 'apiclientprivate' parameters in the 'Header' section. PaymentAPI Address

The header information that should 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.

merchantuniquecode

string

Yes

The unique tracking number you assigned to the transaction at the initiation moment.

The response from the service:

ParameterTypeDescription

Body

object

JSON containing details about the balance information (optional).

ErrorCode

int

Error code. Returns '0' if the transaction is successful.

Result

bool

It returns a Boolean value of true or false. If the transaction is successful, it returns 'true'.

Message

string

If the transaction is unsuccessful, this is the error message specific to the error, providing language support based on the 'locale' parameter.

{
    "ErrorCode": 0,
    "Result": true,
    "Message": "",
    "Body": {
        "PayoutConnectionId": 17,
        "PayoutProviderKey": "Vepara",
        "PayoutTransactionId": 117,
        "CurrencyId": 1,
        "MerchantUniqueCode": "506f3f67a7565f601b3c723a44109d5d",
        "UniqueCode": "24703936-fc2b-453f-bb71-f57cecb14a00",
        "Amount": 10.00,
        "Description": "testi",
        "ReceiverTitle": "test",
        "ReceiverIban": "TR370006400000111234567890",
        "ReceiverAccountNumber": null,
        "ChannelId": 1,
        "Channel": "API",
        "StatusId": 3,
        "Status": "Başarılı",
        "TypeId": 1,
        "Type": "Iban",
        "Ip": "123.123.123.123",
        "DateTime": "2023-09-02T21:36:54.8552362"
    }
} 

Last updated