5. Delete
This service should be used to remove a specific record from the system.
Delete Wallet Transaction
DELETE
{{WalletUrl}}/api/v1/wallet
The parameters that must be sent to the service are as follows:
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
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