5. Delete

This service should be used to remove a specific record from the system.

Delete Wallet Transaction

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

Note: Before calling this service, the apikeypublic and apiclientpublic parameters must be included in the Header section.

WalletAPI Address

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

Parameter
Type
Required
Description

apikeypublic

string

Yes

It is the public key used for access verification in API requests.

apiclientpublic

string

Yes

It is the public key used for authentication of the client making the API call.

{
  "Id": "{{walletId}}"
}
{
    "Value": {},
    "Errors": [],
    "IsSuccess": true,
    "IsFailure": false
}

Service Response

Parameter
Type
Description

IsFailure

bool

It is a boolean value indicating whether the request was successful or not.

IsSuccess

bool

It is the information that indicates whether the API call was successfully completed or not.

Errors

Array

It is the dataset that lists the error messages and details encountered during the transaction.

Value

Array<Items>

It is the content arranged as a list of data objects returned in the service response.

Last updated