List templates
curl --request POST \
--url https://restapi.sign.plus/v2/templates \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"tags": [
"<string>"
],
"ids": [
"<string>"
],
"first": 123,
"last": 123,
"after": "<string>",
"before": "<string>",
"ascending": true
}
'import requests
url = "https://restapi.sign.plus/v2/templates"
payload = {
"name": "<string>",
"tags": ["<string>"],
"ids": ["<string>"],
"first": 123,
"last": 123,
"after": "<string>",
"before": "<string>",
"ascending": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
tags: ['<string>'],
ids: ['<string>'],
first: 123,
last: 123,
after: '<string>',
before: '<string>',
ascending: true
})
};
fetch('https://restapi.sign.plus/v2/templates', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://restapi.sign.plus/v2/templates",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'tags' => [
'<string>'
],
'ids' => [
'<string>'
],
'first' => 123,
'last' => 123,
'after' => '<string>',
'before' => '<string>',
'ascending' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://restapi.sign.plus/v2/templates"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"ids\": [\n \"<string>\"\n ],\n \"first\": 123,\n \"last\": 123,\n \"after\": \"<string>\",\n \"before\": \"<string>\",\n \"ascending\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://restapi.sign.plus/v2/templates")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"ids\": [\n \"<string>\"\n ],\n \"first\": 123,\n \"last\": 123,\n \"after\": \"<string>\",\n \"before\": \"<string>\",\n \"ascending\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://restapi.sign.plus/v2/templates")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"ids\": [\n \"<string>\"\n ],\n \"first\": 123,\n \"last\": 123,\n \"after\": \"<string>\",\n \"before\": \"<string>\",\n \"ascending\": true\n}"
response = http.request(request)
puts response.read_body{
"has_next_page": true,
"has_previous_page": true,
"templates": [
{
"id": "<string>",
"name": "<string>",
"comment": "<string>",
"pages": 123,
"created_at": 123,
"updated_at": 123,
"expiration_delay": 123,
"num_recipients": 123,
"signing_steps": [
{
"recipients": [
{
"id": "<string>",
"uid": "<string>",
"name": "<string>",
"email": "<string>"
}
]
}
],
"documents": [
{
"id": "<string>",
"name": "<string>",
"filename": "<string>",
"page_count": 123,
"pages": [
{
"width": 123,
"height": 123
}
]
}
],
"notification": {
"subject": "<string>",
"message": "<string>",
"reminder_interval": 123
},
"dynamic_fields": [
"<string>"
],
"attachments": {
"settings": {
"visible_to_recipients": true
},
"recipients": [
{
"recipient_id": "<string>",
"recipient_name": "<string>",
"placeholders": [
{
"recipient_id": "<string>",
"id": "<string>",
"name": "<string>",
"hint": "<string>",
"required": true,
"multiple": true,
"files": [
{
"id": "<string>",
"name": "<string>",
"size": 123,
"mimetype": "<string>"
}
]
}
]
}
]
}
}
]
}Template
List templates
POST
/
templates
List templates
curl --request POST \
--url https://restapi.sign.plus/v2/templates \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"tags": [
"<string>"
],
"ids": [
"<string>"
],
"first": 123,
"last": 123,
"after": "<string>",
"before": "<string>",
"ascending": true
}
'import requests
url = "https://restapi.sign.plus/v2/templates"
payload = {
"name": "<string>",
"tags": ["<string>"],
"ids": ["<string>"],
"first": 123,
"last": 123,
"after": "<string>",
"before": "<string>",
"ascending": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
tags: ['<string>'],
ids: ['<string>'],
first: 123,
last: 123,
after: '<string>',
before: '<string>',
ascending: true
})
};
fetch('https://restapi.sign.plus/v2/templates', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://restapi.sign.plus/v2/templates",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'tags' => [
'<string>'
],
'ids' => [
'<string>'
],
'first' => 123,
'last' => 123,
'after' => '<string>',
'before' => '<string>',
'ascending' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://restapi.sign.plus/v2/templates"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"ids\": [\n \"<string>\"\n ],\n \"first\": 123,\n \"last\": 123,\n \"after\": \"<string>\",\n \"before\": \"<string>\",\n \"ascending\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://restapi.sign.plus/v2/templates")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"ids\": [\n \"<string>\"\n ],\n \"first\": 123,\n \"last\": 123,\n \"after\": \"<string>\",\n \"before\": \"<string>\",\n \"ascending\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://restapi.sign.plus/v2/templates")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"ids\": [\n \"<string>\"\n ],\n \"first\": 123,\n \"last\": 123,\n \"after\": \"<string>\",\n \"before\": \"<string>\",\n \"ascending\": true\n}"
response = http.request(request)
puts response.read_body{
"has_next_page": true,
"has_previous_page": true,
"templates": [
{
"id": "<string>",
"name": "<string>",
"comment": "<string>",
"pages": 123,
"created_at": 123,
"updated_at": 123,
"expiration_delay": 123,
"num_recipients": 123,
"signing_steps": [
{
"recipients": [
{
"id": "<string>",
"uid": "<string>",
"name": "<string>",
"email": "<string>"
}
]
}
],
"documents": [
{
"id": "<string>",
"name": "<string>",
"filename": "<string>",
"page_count": 123,
"pages": [
{
"width": 123,
"height": 123
}
]
}
],
"notification": {
"subject": "<string>",
"message": "<string>",
"reminder_interval": 123
},
"dynamic_fields": [
"<string>"
],
"attachments": {
"settings": {
"visible_to_recipients": true
},
"recipients": [
{
"recipient_id": "<string>",
"recipient_name": "<string>",
"placeholders": [
{
"recipient_id": "<string>",
"id": "<string>",
"name": "<string>",
"hint": "<string>",
"required": true,
"multiple": true,
"files": [
{
"id": "<string>",
"name": "<string>",
"size": 123,
"mimetype": "<string>"
}
]
}
]
}
]
}
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Name of the template
List of tag templates
Tag of the template
List of templates IDs
ID of the template
Field to order templates by. Valid values: TEMPLATE_ID, TEMPLATE_CREATION_DATE, TEMPLATE_MODIFICATION_DATE, TEMPLATE_NAME.
Available options:
TEMPLATE_ID, TEMPLATE_CREATION_DATE, TEMPLATE_MODIFICATION_DATE, TEMPLATE_NAME Whether to order templates in ascending order
⌘I