Parameters
| Name | Type | Description | Requirement |
|---|---|---|---|
| id | Integer | The template identifier | Required |
| name | String | The template name | Required |
| status | String | The template status. Possible values: Draft, Active, Inactive, Disabled | Required |
| formType | String | The template type. Possible values: Form, Document | Required |
| savedTime | String | The time the template was last saved | Required |
| publishedTime | String | The time the template was last published | Optional |
| roles | Array | An array of SignRole objects | Optional |
Example Response
{
"id": 34,
"name": "Employee contract template",
"status": "Active",
"formType": "Form",
"savedTime": "2020-06-18 18:16:19",
"publishedTime": "2020-06-18 18:16:29",
"roles": [
{
"id": 3,
"name": "CEO",
"sequence": 0
},
{
"id": 4,
"name": "Employee",
"sequence": 1
},
]
}