Skip to content

Templates

Create and reuse predefined document templates.

List templates

Request

Retrieves a paginated list of all templates available in your account.

Security
basicAuth
Query
offsetinteger

The index of the first envelope to retrieve.

Default:0
Example:offset=0
limitinteger, [ 1 .. 50 ]

The maximum number of envelopes to return. If more than 50 is requested, 10 will be returned instead.

Default:10
GET
/templates
curl -i -X GET \
  -u '<username>:<password>' \
  'https://api.signable.co.uk/v1/templates?offset=0&limit=10'

Responses

Templates list returned successfully

Bodyapplication/json
httpinteger
Example:200
offsetinteger
Example:0
limitinteger
Example:10
total_templatesstring
Example:"1"
templatesArray of objects(TemplateSummary)
Response
{ "http": 200, "offset": 0, "limit": 10, "total_templates": "2", "templates": [ {}, {} ] }