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

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
    }
]

Last updated