List workspace templates¶
Method | Path |
---|---|
GET | /api/v1/workspaces/{workspaceId}/templates |
Query Parameters¶
page
int
Return page results, default value 1.
limit
int
Customize page returned items, default value 8.
Example¶
curl --request GET 'https://app.yumisign.com/api/v1/workspaces/{workspaceId}/templates?page=1&limit=10' \
--header 'Content-Type: application/json'
{
"total":4,
"limit":10,
"pages":1,
"items":[
{
"recipientsCount":1,
"steps":[
{
"order":1,
"type":"sign",
"actions":[
{
"role":8473,
"type":"sign",
"id":8570
}
],
"id":7450
}
],
"createDate":1665753023,
"type":"simple",
"tags":[
],
"creator":{
"email":"email@mail.com",
"picture":{
"file":null,
"thumb":null,
"format":" ",
"size":0
},
"name":"lastname firstname",
"country":"FR",
"id":5
},
"id":6893,
"name":"project Name"
}
]
}