DecisionVault API
  1. Matters
DecisionVault API
  • DecisionVault API
    • Authentication
    • Automation
    • External Identifiers
    • Financial Categories
    • Pagination
    • Webhooks
    • Questionnaires
      • Get Questionnaires
      • Get Single Questionnaire
    • FinancialCategories
      • Get Financial Categories
    • Matters
      • Get Matters
        GET
      • Get Single Matter
        GET
      • Get Clients for a Matter
        GET
      • Get Assets for a Matter
        GET
      • Get Contacts for a Matter
        GET
      • Get Documents for Matter
        GET
      • Get Financial Documents for Matter
        GET
      • Create Matter
        POST
    • Events
      • Get Events
      • Get Single Event
    • Documents
      • Get Single Document
    • Users
      • Get Single User
    • Subscriptions
      • Create Webhook Subscription
      • Delete Webhook Subscription
  1. Matters

Get Clients for a Matter

GET
/v1/matters/{matter_id}/clients
Get a list of the client(s) under a given matter
On an estate planning matter this will be the 1 or 2 clients
On a probate/elder law matter (representative intake) this will be the representative

Request

Path Params

Responses

🟢200OK
application/json
OK
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/matters//clients'
Response Response Example
{
    "matter": "matter_D65508D9A98A473B874F4FC2CEDC800E",
    "contacts": [
        {
            "id": "contact_6AB8E24C9CF84EAB82B1E19AF553F05F",
            "for_matter": "matter_D65508D9A98A473B874F4FC2CEDC800E",
            "is_client": true,
            "first_name": "Mary",
            "middle_name": "",
            "last_name": "Smith",
            "suffix": null,
            "full_name": "Mary Smith",
            "also_known_as": null,
            "preferred_name": null,
            "gender_binary": "Female",
            "date_of_birth": "1971-02-02",
            "date_of_death": null,
            "phone_numbers": [
                {
                    "id": "phone_F03EC16DEB2943A0A6052D2E74FEC48E",
                    "type": "home",
                    "number": "(555) 333-2222"
                },
                {
                    "id": "phone_5CB5C90DED4F448ABECF1806CBCD282F",
                    "type": "mobile",
                    "number": "(555) 444-3333"
                }
            ],
            "email_addresses": [
                {
                    "id": "email_3293ABCB1CF74A2589055AECB1527AC4",
                    "type": "home",
                    "email": "marysmith@example.com"
                }
            ],
            "addresses": [
                {
                    "id": "address_P2CB56A57A4F241FC96B7C30DA6322D49",
                    "type": "home",
                    "street": "123 Main St",
                    "city": "Denver",
                    "state": "CO",
                    "postal_code": "80008",
                    "country_iso": "USA",
                    "country_display": "United States of America",
                    "full_address": "123 Main St, Denver, CO 80008, USA"
                }
            ],
            "created_at": "2022-03-09T17:10:59.899267+00:00"
        }
    ]
}
Modified at 2025-09-21 17:20:23
Previous
Get Single Matter
Next
Get Assets for a Matter
Built with