🚧 The Signature.nc API documentation in under construction, feel free to contact-us.
API Documentation
API
Submissions
List all submissions

List all submissions

GET/submissions

The API endpoint provides the ability to retrieve a list of available submissions.

NodeJS
var axios = require("axios").default;
 
var options = {
  method: 'GET',
  url: 'https://api.signature.nc/api/v1/submissions',
  headers: {'Authorization': 'Bearer {apiKey}'}
};
 
axios.request(options).then(function (response) {
  console.log(response.data);
}).catch(function (error) {
  console.error(error);
});
json
[
    {
        "name": "My submission test name",
        "createdAt": "2024-05-27T04:54:51.637Z",
        "updatedAt": "2024-05-27T04:54:51.637Z",
        "locale": "fr",
        "uuid": "a54af2ab-2668-44f8-896b-7e16cc6c8c53",
        "sendEmail": true,
        "customMessage": null,
        "template": {
            "name": "Test API Template v3",
            "createdAt": "API Template v3",
            "updatedAt": "API Template v3",
            "uuid": "24498f77-761c-4695-8df0-218c84059a95"
        },
        "submitters": [],
        "createdBy": {
            "firstname": "Marie",
            "lastname": "Curie",
            "email": "mariecurie@signature.nc"
        }
    }
]