/
/Wallet JSON API
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 1h ago · Updated 1mo ago
HTTPWalletJSON28
  • postCreates a new Bitcoin transaction
  • postSigns a transaction previously created using `createAction`
  • postAborts a transaction that is in progress
  • postLists all transactions matching the specified labels
  • postSubmits a transaction to be internalized
  • postLists the spendable outputs kept within a specific basket
  • postRelinquish an output out of a basket
  • postRetrieves the public key
  • postReveals counterparty key linkage
  • postReveals specific key linkage
  • postEncrypts data
  • postDecrypts data
  • postCreates HMAC
  • postVerifies HMAC
  • postCreates a signature
  • postVerifies a signature
  • postAcquires a certificate
  • postLists certificates
  • postProves a certificate
  • postRelinquishes a certificate
  • postDiscovers certificates by identity key
  • postDiscovers certificates by attributes
  • postChecks if the user is authenticated
  • postWaits for user authentication
  • postRetrieves the current blockchain height
  • postRetrieves the block header for a specific height
  • postRetrieves the current network
  • postRetrieves the current version
    HTTPWalletJSON

    Relinquishes a certificate

    post/relinquishCertificate

    Request body

    typestring
    serialNumberstring
    certifierstring

    Example request

    {
      "type": "W/iqV/xaa8VH3s8cxttj8Q3rVaPGxd9JfWMfs9leGr8=",
      "serialNumber": "oXTshKWy209Lv8MFVDxmsFzZQQ",
      "certifier": "03d40063722f77cc57a96bdf963c56fd29085b1297e598471ad63dd51b1b54db6e"
    }

    Response

    The relinquishment result

    relinquishedboolean

    Example response

    {
      "relinquished": true
    }

    Changes