Dedit
  • Welcome to Dedit API Documentation
  • Introduction
    • Authentication and login with API Key
  • Notarization
    • Retrieve Notarizations
    • Notarize without storage (request registration)
    • Notarize without storage(complete registration)
    • Storage
    • Notarize with storage (request registration)
    • Notarize with storage (complete registration)
    • File metadata upload
    • File content upload
    • Download of file content
    • Notarizations count
    • Notarization receipt
  • Signature
    • Sign a notarization
    • Multisig Invitation
  • Payment
    • Retrieve specific Subscription
    • Retrieve active Subscription
    • Active wallets
  • Errors
Powered by GitBook
On this page
  1. Notarization

Retrieve Notarizations

This API call is used to retrieve the list of all notarizations completed through your Dedit account.

HTTP Request registration

GET https://app.dedit.io/api/v2/registration

Headers

Name
Value
Description

Authorization

Bearer $TOKEN

authentication token that is used to authorize access to an API

The above command returns a JSON structured as follows:

[
    {
        "hash": "5a1ec7102e41f1bxxxxxx1420577f61620d6ebf3204bce6f17c2dd6bcb",
        "description": "test storage 1",
        "custody": false,
        "signed": false,
        "signer": null,
        "signature": null,
        "txHash": null,
        "status": "awaiting_registration",
        "blockchainType": "ALGORAND",
        "holder": null,
        "txId": null,
        "assetId": null,
        "tags": [],
        "creationDate": 1683554764000,
        "paymentId": null,
        "payload": null,
        "userId": 1390
    },
    {
        "hash": "b133a0c0e9bee3be20xxxxxx8db292aa6dcb1ee087a2aa50e0fc75ae2",
        "description": "test storage 2",
        "custody": true,
        "signed": false,
        "signer": null,
        "signature": null,
        "txHash": null,
        "status": "registered",
        "blockchainType": "ALGORAND",
        "holder": null,
        "txId": null,
        "assetId": null,
        "tags": null,
        "creationDate": 1681478973000,
        "paymentId": null,
        "payload": null,
        "userId": 1390
    }
]
PreviousNotarizationNextNotarize without storage (request registration)

Last updated 2 years ago