3. Delete

You can use this service to delete the blocked balance assigned to a specific wallet.

Delete Blocked Balance.

DELETE{{WalletUrl}}/api/v1/wallet/balance/blocked

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.

{
  "Id": "0000-0000-0000-0000-0000",
  "BlockedBalanceId": "1111-1111-1111-1111-1111"
}
{
    "Value": {
        "Id": "0001494f-522e-40e1-96d2-18c03caecd29",
        "WalletId": "8811e7f9-7a49-43c2-9193-1c4825b81c24",
        "Amount": 100,
        "Description": "string",
        "IsActive": true,
        "CreatedAt": "2025-05-01T15:34:43.7633053Z",
        "UpdatedAt": null
    },
    "Errors": [],
    "IsSuccess": true,
    "IsFailure": false
}

Service Response.

Parameter
Type
Description

IsFailure

bool

Indicates whether the operation has failed. If true, an error has occurred.

IsSuccess

bool

Indicates whether the operation was successful. If true, it has been completed successfully.

Errors

Array

An array containing details of any errors that occurred.

Value

Array

Contains the actual data returned in case of a successful response.

Service Response. (Value)

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

Activation status of the blocked amount

CreatedAt

DateTime

Record creation date

UpdatedAt

DateTime

Record update date

Last updated