# 2. List

## Block Balance

<mark style="color:blue;">`GET`</mark>`{{WalletUrl}}/api/v1/wallet/balance/blocked?walletId=0000-0000-0000-0000-0000`

{% hint style="info" %}
**Note:** To use this service, it is mandatory to include the **apikeypublic** and **apiclientpublic** parameters in the Header area.

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

**Headers required to send to the service are as follows:**

<table><thead><tr><th width="162">Parameter</th><th width="79">Type</th><th width="107">Required</th><th width="403">Description</th></tr></thead><tbody><tr><td>apikeypublic</td><td>string</td><td>Yes</td><td>The general key used to enable API access.</td></tr><tr><td>apiclientpublic</td><td>string</td><td>Yes</td><td>The general identity key specific to the API client.</td></tr></tbody></table>

**QueryString parameters required to send to the service are as follows:**

| Parameter | Description                                                                          |
| --------- | ------------------------------------------------------------------------------------ |
| walletId  | The identity (ID) information of the wallet whose blocked balances you want to list. |

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

```json
[
    {
        "Id": "0001494f-522e-40e1-96d2-18c03caecd29",
        "WalletId": "8811e7f9-7a49-43c2-9193-1c4825b81c24",
        "Amount": 100.00,
        "Description": "string",
        "IsActive": true,
        "CreatedAt": "2025-05-01T15:34:43.763305Z",
        "UpdatedAt": null
    },
    {
        "Id": "d7f1d65e-d818-4fae-81ef-820da604cbdf",
        "WalletId": "8811e7f9-7a49-43c2-9193-1c4825b81c24",
        "Amount": 0.01,
        "Description": "string",
        "IsActive": true,
        "CreatedAt": "2025-05-01T15:34:54.588107Z",
        "UpdatedAt": null
    },
    {
        "Id": "086d8148-652c-45d9-b4e4-25e2fcfd8230",
        "WalletId": "8811e7f9-7a49-43c2-9193-1c4825b81c24",
        "Amount": 10.00,
        "Description": "string",
        "IsActive": true,
        "CreatedAt": "2025-05-01T15:39:11.500736Z",
        "UpdatedAt": null
    },
    {
        "Id": "9e996e90-063c-4b53-9a46-295cc62e8ba3",
        "WalletId": "8811e7f9-7a49-43c2-9193-1c4825b81c24",
        "Amount": 10.00,
        "Description": "string",
        "IsActive": true,
        "CreatedAt": "2025-05-01T15:42:47.715456Z",
        "UpdatedAt": null
    }
]
```

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

## Service Response

<table><thead><tr><th width="234.05859375">Parameter</th><th width="162.38671875">Type</th><th width="348.94140625">Description</th></tr></thead><tbody><tr><td>Id</td><td>Guid</td><td>Blocked balance identity number.</td></tr><tr><td>WalletId</td><td>Guid</td><td>Wallet identity number.</td></tr><tr><td>Amount</td><td>decimal</td><td>Blocked amount.</td></tr><tr><td>Description</td><td>string</td><td>Blocked balance description.</td></tr><tr><td>IsActive</td><td>bool</td><td>Blokeli tutarın aktiflik durumu</td></tr><tr><td>CreatedAt</td><td>DateTime</td><td>Record creation date.</td></tr><tr><td>UpdatedAt</td><td>DateTime</td><td>Record update date.</td></tr></tbody></table>
