Skip to main content

Delete a wallet

This method allows TEOS API consumers to permanently remove a wallet from the system by its unique identifier (Id).
When deleted, the wallet record and all related user-specific associations (if any) are irreversibly removed.

📘 Learn more about wallets.

Request Endpoint​

DELETE /odata/v1.0/Wallets({key})

Supported OData Query Options​

None.

Parameters​

NameTypeDescription
keystring($uuid)Required. Unique identifier of the wallet to be deleted.
Example: B5BB3E99-A8F8-4896-8D41-07920DFCDAEC

Sample Request​

DELETE /Wallets(2F8D7E4F-064C-4531-9A26-5BF00C24DB32)

Responses​

CodeDescription
204The wallet was successfully deleted. No content is returned in the response body.
401Unauthorized — authentication credentials are missing or invalid.
403Forbidden — the requester does not have permission to delete the specified wallet.
404Not Found — the wallet with the specified ID does not exist.