Gets a sign template by ID signTemplates.getById(options, callback)
method.
const sr = await client.signTemplates.getById({
template_id: 12345,
});
console.log(
`Sign template id ${sr.id} contains ${sr.source_files.length} files`
);
Gets sign templates created by a user signTemplates.getAll(options, callback)
method.
const result = await client.signTemplates.getAll();
console.log(`There are ${result.count} sign templates`);