1. List

You can use this method to list the APM providers that you have activated through the PayWall panel and have enabled the 'List with API' feature.

List my APMs

GET {{Base Adres}}/api/paywall/apm/list

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

Important: To use the APM Listing service, you need to send the 'apikeypublic' and 'apiclientpublic' parameters in the 'Header' section. PaymentAPI Address

The parameters that need to be sent to the service are as follows:

Parameter (Headers)TypeRequiredDescription

apikeypublic

string

Yes

The Public Key obtained from the merchant panel.

apiclientpublic

string

Yes

The Public Client obtained from the merchant panel.

currencyid

int

Yes

The currency in which the payment is to be made.

The parameters returned from the service are as follows:

ParameterTypeDescription

ConnectionId

int

The provider's connection identity information, used when initiating with the payment Id.

Logo

string

The provider's logo, can be used for listing on your own payment screen.

ProviderKey

string

The provider's keyword in PayWall, used when initiating with the payment Key.

ProviderName

string

The name of the provider.

CategoryName

string

The category of the provider.

{
    "ErrorCode": 0,
    "Result": true,
    "Message": "",
    "Body": [
        {
            "ConnectionId": 1,
            "Logo": "https://itspaywall.s3.eu-west-2.amazonaws.com/02e9b3809163481bbd03c8a133f2ce3b.png",
            "ProviderKey": "Papara",
            "ProviderName": "Papara",
            "CategoryName": "Cüzdan"
        }
    ]
}

Last updated