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 Matters

GET
/v1/matters
List the matters under your firm

Request

Query Params

Responses

🟢200OK
application/json
OK
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/matters?page_size&search&from&until&is_submitted&quest_approach'
Response Response Example
{
    "count": 2,
    "next": "https://api.decisionvault.com/v1/matters?page=2",
    "previous": null,
    "results": [
        {
            "id": "matter_AABBCCDD0011223344",
            "name": "Smith - 5/15/2021",
            "open_date": "2021-04-30",
            "close_date": "2021-06-25",
            "quest_internal_type": "Planning",
            "quest_approach": "planning"
        },
        {
            "id": "matter_AABBCCDD0055667788",
            "name": "Doe - 7/18/2021",
            "open_date": "2021-07-18",
            "close_date": null,
            "quest_internal_type": "Probate",
            "quest_approach": "rep-deceased"
        }
    ]
}
Modified at 2025-09-18 21:00:45
Previous
Get Financial Categories
Next
Get Single Matter
Built with