v1

latestOpenAPI 3.0.0raw.githubusercontent.com2026-04-107095124.5 KB
Wallet storage endpoints

Delete wallet storage data

Delete wallet storage data. Authentication is required using domain owner signature.

delete/user/{account}/wallet/storage/{key}

Path parameters

accountstring required

The account ID to authenticate

Headers

Authorizationstring required

The JWT access token that authorizes the request

Response

Wallet storage data successfully deleted

createdDatestring

The date the storage key was created

updatedDatestring

The date the storage key was last updated

keystring

The key of the storage data

datastring

The data of the storage key

schemastring

A serialized Zod schema that represents the data format. Use https://github.com/StefanTerdell/json-schema-to-zod to recreate the Zod schema on a client.

Example response

{
  "createdDate": "2021-01-01",
  "updatedDate": "2021-01-01",
  "key": "key1",
  "data": "value1"
}