# 1. List of Connected Providers

## List my APMs

<mark style="color:blue;">`GET`</mark> `{{Base Adres}}/api/paywall/apm/list`

{% hint style="info" %}
**Important**: To use the APM Listing service, you need to include '**apikeypublic**' and '**apiclientpublic**' parameters in the 'Header' field.

[<mark style="color:green;">**PaymentAPI Address**</mark>](https://developer.paywall.one/payment-orchestration-integration-document/environment)
{% endhint %}

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

<table><thead><tr><th width="211">Parameter (Headers)</th><th width="79">Type</th><th width="146">Compulsory</th><th width="403">Description</th></tr></thead><tbody><tr><td>apikeypublic</td><td>string</td><td>Yes</td><td>The Public Key obtained from the merchant panel.</td></tr><tr><td>apiclientpublic</td><td>string</td><td>Yes</td><td>The Public Client obtained from the merchant panel.</td></tr><tr><td>currencyid</td><td>int</td><td>Yes</td><td>The currency in which the payment is intended to be processed.</td></tr><tr><td>externalid</td><td>string</td><td>No</td><td>The External ID provided during APM connection.</td></tr><tr><td>focusedfeature</td><td>string</td><td>No</td><td><p>It specifies in which mode the payment flow is desired to be executed. For example, if 'qr' is specified, the list of providers supporting QR payments is shared from the Paywall account.</p><p><br>Bkz: <a href="broken-reference">List</a></p></td></tr><tr><td>distinctduplicates</td><td>bool</td><td>No</td><td>If sent as <mark style="color:green;">true</mark>, duplicate connections belonging to the same provider in the list are reduced to a single entry.</td></tr></tbody></table>

**The parameters returned from the service are as follows:**

<table><thead><tr><th width="184.33333333333331">Parameter</th><th width="173.3359375">Type</th><th>Description</th></tr></thead><tbody><tr><td>ConnectionId</td><td>int</td><td>The connection identifier of the provider. It is used when initiating a payment with the Payment Id information.</td></tr><tr><td>Logo</td><td>string</td><td>The provider logo. It can be used to display on your own payment screen.</td></tr><tr><td>ProviderKey</td><td>string</td><td>The provider's keyword in Paywall. It is used when initiating a payment with the Payment Key information.</td></tr><tr><td>ProviderName</td><td>string</td><td>The name of the provider.</td></tr><tr><td>CategoryName</td><td>string</td><td>The category of the provider.</td></tr></tbody></table>

{% tabs %}
{% tab title="JSON" %}
{% code lineNumbers="true" %}

```json
{
    "ErrorCode": 0,
    "Result": true,
    "Message": "",
    "Body": [
        {
            "ProviderId": 1,
            "ProviderKey": "ProviderKey",
            "ProviderName": "ProviderName",
            "CategoryName": "Cüzdan",
            "ConnectionId": 62,
            "ExternalIdSupport": false,
            "ExternalId": "",
            "Logo": "https://itspaywall.s3.eu-west-2.amazonaws.com/98585041ec304050913860a1cebb56a7.png",
            "Features": {
                "OtpBased": true,
                "QrBased": true,
                "CheckoutBased": true,
                "DirectPayBased": true
            }
        }
    ]
}
```

{% endcode %}
{% endtab %}
{% endtabs %}
