List templates
curl --request GET \
--url https://my.flowsign.app/api/v1/templates \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://my.flowsign.app/api/v1/templates', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://my.flowsign.app/api/v1/templates"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)using RestSharp;
var options = new RestClientOptions("https://my.flowsign.app/api/v1/templates");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
{
"data": {
"templates": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"status": "DRAFT",
"tags": [
"<string>"
],
"roles": [
{
"id": "<string>",
"name": "<string>",
"actionType": "SIGNER",
"order": 123
}
],
"documentsCount": 1,
"fieldsCount": 1,
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"totalCount": 1,
"page": 2,
"pageSize": 2
}
}{
"error": "<string>",
"details": {}
}{
"error": "<string>",
"details": {}
}{
"error": "<string>",
"details": {}
}{
"error": "<string>",
"details": {}
}{
"error": "<string>",
"details": {}
}Templates
List templates
Returns a paginated list of the workspace’s templates. status filters by lifecycle state or ‘all’.
GET
/
api
/
v1
/
templates
List templates
curl --request GET \
--url https://my.flowsign.app/api/v1/templates \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://my.flowsign.app/api/v1/templates', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://my.flowsign.app/api/v1/templates"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)using RestSharp;
var options = new RestClientOptions("https://my.flowsign.app/api/v1/templates");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
{
"data": {
"templates": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"status": "DRAFT",
"tags": [
"<string>"
],
"roles": [
{
"id": "<string>",
"name": "<string>",
"actionType": "SIGNER",
"order": 123
}
],
"documentsCount": 1,
"fieldsCount": 1,
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"totalCount": 1,
"page": 2,
"pageSize": 2
}
}{
"error": "<string>",
"details": {}
}{
"error": "<string>",
"details": {}
}{
"error": "<string>",
"details": {}
}{
"error": "<string>",
"details": {}
}{
"error": "<string>",
"details": {}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
The workspace to act in, from GET /api/v1/workspaces. Omit to act in the organisation's default workspace. A workspace the key's user cannot act in is treated as omitted.
Query Parameters
Available options:
DRAFT, ACTIVE, ARCHIVED Required range:
x >= 1Required range:
1 <= x <= 100Response
Success
Show child attributes
Show child attributes
Was this page helpful?

