You can retrieve all archived transactions that you have the permission to view. To do so, send a request to GET /v1/archives
. You can pass a series of optional filters to refine your request.
curl
https://api.universign.com/v1/archives?size=1 \
The API returns the list of all archived transactions matching your request.
{
"has_more" : true,
"content" : [ {
"object" : "transaction-archive",
"id" : "tx_qGzGg79gaZaJ",
"created_at" : "2022-09-13T09:45:38Z",
"started_at" : "2022-09-13T09:50:46Z",
"closed_at" : "2022-09-13T09:51:42Z",
"name" : "Archived_transaction_name",
"language" : "fr",
"folder_id" : "fol_JqqOX1OY778L",
"folder_name" : "Default folder",
"creator" : {
"email" : "john.doe@company.com",
"name" : "John Doe"
},
"participants" : [ {
"email" : "jane.doe@company.com",
"name" : "Jane Doe"
} ],
"documents" : [ {
"id" : "doc_eVY2",
"name" : "A signer.pdf"
} ],
"metadata" : { },
"uploads" : [ ],
"private" : false
}