# Listar plantillas

## Listar plantillas

<mark style="color:blue;">`GET`</mark> `https://api.zapsign.com.br/api/v1/templates/`

#### Query Parameters

<table><thead><tr><th width="174">Nombre</th><th width="105">Tipo</th><th>Descripción</th></tr></thead><tbody><tr><td>page</td><td>number</td><td>1, 2, 3, n... (20 resultados por página)</td></tr></tbody></table>

#### Encabezado

<table><thead><tr><th width="175">Nombre</th><th width="103">Tipo</th><th>Descripción</th></tr></thead><tbody><tr><td>Authorization<mark style="color:red;">*</mark></td><td>string</td><td>API token prefijo con la palabra "Bearer". Ex: Bearer c7f35c84-7893-4087-b4fb-d1f06c23</td></tr></tbody></table>

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
	"count": 31,
	"next": "http://api.zapsign.com.br/api/v1/templates/?page=2",
	"previous": null,
	"results": [
		{
			"token": "152f8416-xxxx-xxxx-xxxx-1aaf785dd335",
			"template_type": "docx",
			"name": "Template name",
			"active": true,
			"template_file": "https://zapsign.s3.amazonaws.com/2022/1/docs/xxxxx-d66b-495f-9b51-xxxx.docx",
			"created_at": "2022-01-05T12:59:42.563218Z",
			"last_update_at": "2022-01-05T13:03:22.242003Z",
			"redirect_link": "",
			"folder_path": "",
			"lang": "pt-br"
		},
		{
			"token": "333333333-xxxx-xxxx-xxxx-1aaf785dd335",
			"template_type": "docx",
			"name": "Template name 2",
			"active": true,
			"template_file": "https://zapsign.s3.amazonaws.com/2022/1/docs/xxxxx-d66b-495f-9b51-xxxx.docx",
			"created_at": "2022-01-05T12:59:42.563218Z",
			"last_update_at": "2022-01-05T13:03:22.242003Z",
			"redirect_link": "",
			"folder_path": "",
			"lang": "pt-br"
		},
		...
	]
}
```

{% endtab %}
{% endtabs %}

### Ejemplo de una solicitud en Postman

{% embed url="<https://www.postman.com/zapsign/workspace/zapsign-workspace/request/27495556-6e1e6938-5225-4305-a4bf-d59f78c974d9?ctx=documentation>" %}
