2. List

You can use this service to view/query the blocked balance assigned to a specific wallet.

Block Balance

GET{{WalletUrl}}/api/v1/wallet/balance/blocked?walletId=0000-0000-0000-0000-0000

Note: To use this service, it is mandatory to include the apikeypublic and apiclientpublic parameters in the Header area.

WalletAPI Address

Headers required to send to the service are as follows:

Parameter
Type
Required
Description

apikeypublic

string

Yes

The general key used to enable API access.

apiclientpublic

string

Yes

The general identity key specific to the API client.

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.

[
    {
        "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
    }
]

Service Response

Parameter
Type
Description

Id

Guid

Blocked balance identity number.

WalletId

Guid

Wallet identity number.

Amount

decimal

Blocked amount.

Description

string

Blocked balance description.

IsActive

bool

Blokeli tutarın aktiflik durumu

CreatedAt

DateTime

Record creation date.

UpdatedAt

DateTime

Record update date.

Last updated