Notarize without storage (request registration)

This API call allows you to request the notarization of a document on the Algorand blockchain without including its storage within S3.

HTTP Request notarization without storage

POST https://app.dedit.io/api/v2/registration/?subscription=true

Headers

Name
Value
Description

Content-Type

application/json

The content type of the request body

Authorization

Bearer $TOKEN

authentication token that is used to authorize access to an API

Request body

Name
Type
Description

blockchainType

ALGORAND

blockchain used

custody

boolean

storage of the file

description

string

description of the document to notarize

hash

hash

hash of the document to notarize

signed

boolean

sign on the document

status

registered/not_registered

registration of the notarization

Example of a valid request body:

{
    "blockchainType": "ALGORAND",
    "custody": "false",
    "description": "TEST 13-04-2022",
    "hash":"905d4f33b21842xxxxxxxxxx2402f648fef6cdf47c16f65d2dd3001",
    "signed": "false",
    "status": "not_registered"
}

The above command returns a JSON structured as follows:

{
    "sessionId": "1683554257039",
    "id": null,
    "userId": 1390,
    "planId": "price_1MgBqAGkNaUEmNJUvfNUUG8a",
    "planNickname": "FREE",
    "status": "active",
    "created": 1683554257,
    "currentPeriodStart": 1683554257,
    "currentPeriodEnd": 1684418257,
    "canceledAt": 0,
    "customer": null,
    "defaultPaymentMethod": null,
    "latestInvoice": null
}

Last updated