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

Create a template

POST/templates

The API endpoint provides the functionality to create a fillable document template.

Request Body Properties

  • name String
    Name of the template
  • file File
    A template is composed of files
📘

Content-Type : multipart/form-data

NodeJS
var axios = require("axios").default;
 
let formData = new FormData()
formData.append('name', 'API Template')
formData.append('file', '/Users/user/Ordredujour-conseil adminitration.pdf')
 
var options = {
  method: 'POST',
  url: 'https://api.signature.nc/api/v2/templates',
  headers: {'Authorization': 'Bearer {apiKey}'},
  body: formData
};
 
axios.request(options).then(function (response) {
  console.log(response.data);
}).catch(function (error) {
  console.error(error);
});
json
{
    "name": "API Template",
    "uuid": "e681ce5d-0d23-4db0-90d3-f5ba8bb57720",
    "createdAt": "2025-04-02T02:01:08.869Z",
    "updatedAt": "2025-04-02T02:01:08.869Z",
    "documents": [
        {
            "name": "Ordredujour-conseil adminitration.pdf",
            "uuid": "d85baeb5-9bd5-4642-b6c9-0b6bdb0a24e7",
            "url": "https://signaturencdevelopment.s3-accelerate.amazonaws.com/Ordredujour_conseil_adminitration_897d73fc17.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=20250402T020108Z&X-Amz-Expires=900&X-Amz-Signature=b74023ee2ae3b4e9618621a44b712ade691cea54f6ba4e6d3b54cfdf075e96eb&X-Amz-SignedHeaders=host&x-id=GetObject"
        }
    ]
}