2. Search

Search for your customer within the scope of recurring payments.

Search for Recurring Payment Customer

GET {{Base Adres}}/api/paywall/recurring/customer/pool/search

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

PaymentAPI Address

Parameter
Type
Compulsory
Description

apikeypublic

string

Yes

Public Key obtained from the member merchant panel.

apiclientpublic

string

Yes

Public Client obtained from the member merchant panel.

customername

string

Yes

The customer name you want to search for.

The parameters returned from the service are as follows:

Parameter
Type
Description

ErrorCode

int

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

Result

bool

It returns a true or false value. Returns 'true' if the operation is successful.

Message

string

If the operation fails, this is the message specified for the error.

Body

object

It returns card details.

{
    "ErrorCode": 0,
    "Result": true,
    "Message": "",
    "Body": [
        {
            "Id": 105,
            "CustomerName": "tuna test",
            "CustomerLastname": "testt",
            "CustomerPhone": "5554441120",
            "CustomerEmail": "[email protected]",
            "CustomerCountry": "Türkiye",
            "CustomerCity": "İstanbul",
            "CustomerAddress": "Beyoğlu",
            "CustomerIdentity": "11111111110",
            "LastChangesDateTime": "0001-01-01T00:00:00",
            "ActiveUsedSubscription": 34
        }
    ]
}

Last updated