- Introduction
- Concepts
- Authentication
- Webhooks
- Envelope lifecycle
- Error handling
- Contact
- Document
- Envelope
- Get envelope certificate fileGET
- Process envelope certificatePOST
- Get envelopeGET
- Update envelopePUT
- Remove envelopeDELETE
- Create envelopePOST
- List available envelope ownersGET
- Change envelope user account ownerPOST
- Rename envelopePOST
- Move envelopePOST
- Publish envelopePOST
- Unschedule envelope publicationPOST
- Hold envelopePOST
- Cancel envelopePOST
- Restore envelopePOST
- Manual reinvite to review envelopePOST
- Create signature linkGET
- Template
- Vault
Get template
GET
https://api.signater.com/v1/ecm/templates/{templateId}
Template
Last modified:2025-03-29 12:47:42
Request
Authorization
Add parameter in header
x-api-token
Example:
x-api-token: ********************
Path Params
templateId
string <uuid>
required
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.signater.com/v1/ecm/templates/'
Responses
🟢200OK
application/json
Body
id
string <uuid>
optional
vaultId
string <uuid>
optional
vaultName
string | null
optional
name
string | null
optional
description
string | null
optional
payload
string | null
optional
fields
array[object (GetTemplateFieldApiResponse) {7}] | null
optional
id
string <uuid>
optional
name
string | null
optional
alias
string | null
optional
isRequired
boolean
optional
type
enum<string>
optional
Allowed values:
BrCepBrCpfBrCnpjDateOnlyTimeOnlyDateTimeEmailNumberTextCustom
customRegex
string | null
optional
index
integer <int32>
optional
Example
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"vaultId": "867f3a98-ec66-42f4-abbc-5980239e4a28",
"vaultName": "string",
"name": "string",
"description": "string",
"payload": "string",
"fields": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"alias": "string",
"isRequired": true,
"type": "BrCep",
"customRegex": "string",
"index": 0
}
]
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
Modified at 2025-03-29 12:47:42