Matter Types

MatterTypes#index

Retrieves a list of matter types.

GET /matter_types

Response:

Returns a 200 OK with an array of matter types:

[
    {
        "id": 1,
        "name": "Matter Type",
        "created_at": "2024-06-25T23:06:22.326Z",
        "updated_at": "2024-06-25T23:06:22.326Z",
        "firm_id": 1,
        "matter_statuses": [
            {
                "id": 1,
                "name": "Case Evaluation and Document Collection",
                "duration": null,
                "created_at": "2024-12-04T16:25:20.950Z",
                "updated_at": "2024-12-04T16:25:20.950Z",
                "firm_id": 1,
                "sort": null,
                "task_list_id": null,
                "message_template_id": null,
                "move_to_next_status": false,
                "cc_message_to_matter_applicant": false
            }
        ]
    }
]

Last updated

Was this helpful?