DELETE
/
accounts
/
me
/
wallets
/
{address}
curl --request DELETE \
  --url https://api.gateway.tech/accounts/me/wallets/{address} \
  --header 'Authorization: <api-key>'
{
  "created_at": "<string>",
  "did": "<string>",
  "profile_picture": "<string>",
  "storage_size": 123,
  "updated_at": "<string>",
  "username": "<string>",
  "username_updated_at": "<string>",
  "wallet_addresses": [
    {
      "account_id": 123,
      "address": "<string>",
      "chain": "<string>",
      "created_at": "<string>",
      "id": 123,
      "updated_at": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Type "Bearer" followed by a space and the JWT token.

Path Parameters

address
string
required

Wallet Address

Response

200 - application/json
OK
created_at
string
required
did
string
required
storage_size
integer
required
updated_at
string
required
username
string
required
username_updated_at
string
required
wallet_addresses
object[]
required
profile_picture
string