Request document validation

You can request someone to validate the documents of other participants via the review endpoint. Note that the review is always performed by the reviewer on all documents of another participant (the recipient). To specify which participant must review whose documents, send a request to POST /v1/transactions/{transaction_id}/reviews and pass the reviewer and recipient arguments:

curl
https://api.universign.com/v1/transactions/tx_AWo949MOq0JE/reviews \
-d reviewer=john@company.com \
-d recipient=jane@company.com

If you want the reviewer to validate the documents of multiple participants, pass all the recipients emails in the same request:

curl
https://api.universign.com/v1/transactions/tx_AWo949MOq0JE/reviews \
-d reviewer=john@company.com \
-d recipient=jane@company.com\
-d recipient=alice@company.com

If you want multiple reviewers for a participant, you must send your requests unitarily:

curl
https://api.universign.com/v1/transactions/tx_AWo949MOq0JE/reviews \
-d reviewer=john@company.com \
-d recipient=jane@company.com\

and

curl
https://api.universign.com/v1/transactions/tx_AWo949MOq0JE/reviews \
-d reviewer=alice@company.com \
-d recipient=jane@company.com\

It is also possible to request a review on documents that will be sealed. In that case, pass the seal ID as the recipient argument:

curl
https://api.universign.com/v1/transactions/tx_AWo949MOq0JE/reviews \
-d reviewer=john@company.com \
-d recipient=scd_wqaBphJxFQ7n

Seal a document
Request unknown participant edition
Developer tools
Guides
Services
API reference