🚧 The Signature.nc API documentation in under construction, feel free to contact-us.
docs
v2.0
API
Templates
documents
List documents from a template

List all documents of a given template

GET/templates/{uuid}/documents

The API endpoint provides the ability to retrieve a list of available documents of a given template.

Parameters

  • uuid String
    The unique identifier of the document template.
NodeJS
var axios = require("axios").default;
 
var options = {
  method: 'GET',
  url: 'https://api.signature.nc/api/v2/templates/e37e7113-6eb9-4eb7-840f-feffe528dd03/documents',
  headers: {'Authorization': 'Bearer {apiKey}'}
};
 
axios.request(options).then(function (response) {
  console.log(response.data);
}).catch(function (error) {
  console.error(error);
});
json
{
    "documents": [
        {
            "name": "Ordredujour-conseil adminitration.pdf",
            "uuid": "bc41abcf-1fcb-4691-a6cd-66f5da097e73",
            "url": "https://signaturencdevelopment.s3-accelerate.amazonaws.com/Ordredujour_conseil_adminitration_b8cf6b4122.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIATFNZMZNEHIQC3SME%2F20250402%2Fap-southeast-2%2Fs3%2Faws4_request&X-Amz-Date=20250402T022235Z&X-Amz-Expires=900&X-Amz-Signature=373f70692d1b124f515101bb828ffd87165b855e128676a1c1eca211e5793801&X-Amz-SignedHeaders=host&x-id=GetObject"
        }
    ]
}