# Matter Statuses

### MatterStatuses#index

Retrieves a list of matter statuses.&#x20;

```
GET /matter_statuses
```

**Response:**

Returns a 200 OK with an array of matter statuses:

```
[
    {
        "id": 1,
        "name": "Matter Status",
        "duration": null,
        "created_at": "2024-06-25T23:07:09.456Z",
        "updated_at": "2024-06-25T23:07:09.456Z",
        "firm_id": 1,
        "sort": null,
        "task_list_id": null,
        "message_template_id": null,
        "move_to_next_status": false,
        "cc_message_to_matter_applicant": false
    }
]
```
