This method allows you to list all SSH commands within a project template.

## URL

```bash
/templates/<permalink>/ssh_commands
```

* Replace `<permalink>` with the permalink of your template.

## HTTP Method

```
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/api-created/ssh_commands
```

## Example response

```json
[
  {
    "identifier":"a5104e70-db2c-475b-b54c-ead63c3e5388",
    "cback":"after_changes",
    "position":1,
    "description":"Test",
    "command":"echo test;",
    "halt_on_error":false,
    "servers":[],
    "timing":"all",
    "timeout":300
  }
]
```