This method allows you to list all excluded files within a project template.

## URL

```bash
/projects/<project>/excluded_files
```

* Replace `<project>` with either the `permalink` or `identifier` of the project.

## 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/projects/api-created/excluded_files
```

## Example response

```json
[
  {
    "identifier":"7f6a3f33-d1ad-488c-a3ba-cb88b00eef33",
    "path":"node_modules/**",
    "servers":[]
  }
]
```
