This method allows you to generate a list of all templates configured in your DeployHQ account.

## URL

```bash
/templates
```

## HTTP Method

```bash
GET
```

## Supported Parameters

None

## Example cURL Request

```bash
curl -H "Content-type: application/json" \
-H "Accept: application/json" \
--user adam@atechmedia.com:my-api-key \
https://atech.deployhq.com/templates/
```

## Example response

```json
[
  {
    "name":"Master template",
    "permalink":"master-template"
  },
  {
    "name":"Rails Template",
    "permalink":"rails-template"
  }
]
```


