Delete

DELETE /byron-wallets/{walletId}

status: stable

Delete a Byron wallet.

Path parameters

  • walletId string(hex) Required

    Minimum length is 40, maximum length is 40.

Responses

  • 400 application/json

    Bad Request

    Hide response attributes Show response attributes object
    • message string Required

      May occur when a request is not well-formed; that is, it fails to parse successfully. This could be the case when some required parameters are missing or, when malformed values are provided.

    • code string Required

      Value is bad_request.

  • 404 application/json

    Not Found

    Hide response attributes Show response attributes object
    • message string Required

      May occur when a given walletId does not match with any known wallets (because it has been deleted, or has never existed).

    • code string Required

      Value is no_such_wallet.

  • 406 application/json

    Not Acceptable

    Hide response attributes Show response attributes object
    • message string Required

      May occur when providing an invalid 'Accept' header.

    • code string Required

      Value is not_acceptable.

  • No Content

DELETE /byron-wallets/{walletId}
curl \
 -X DELETE https://localhost:8090/v2/byron-wallets/{walletId}
Response examples (400)
{
  "message": "string",
  "code": "bad_request"
}
Response examples (404)
{
  "message": "string",
  "code": "no_such_wallet"
}
Response examples (406)
{
  "message": "string",
  "code": "not_acceptable"
}