2. Search
Search for your products and content within the scope of recurring payments.
Search for Recurring Payment Product/Content
GET
{{Base Adres}}/api/paywall/recurring/item/pool/search
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.
itemname
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 indicating the error.
Body
object
The card details are being returned.
{
"ErrorCode": 0,
"Result": true,
"Message": "",
"Body": [
{
"Id": 19,
"Type": 2,
"Name": "Gold Package",
"Amount": 150.00,
"LastChangesDateTime": "0001-01-01T00:00:00",
"ActiveUsedSubscription": 6
}
]
}
Last updated