DecisionVault API
  1. Events
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 Single Matter
      • Get Clients for a Matter
      • Get Assets for a Matter
      • Get Contacts for a Matter
      • Get Documents for Matter
      • Get Financial Documents for Matter
      • Create Matter
    • Events
      • Get Events
        GET
      • Get Single Event
        GET
    • Documents
      • Get Single Document
    • Users
      • Get Single User
    • Subscriptions
      • Create Webhook Subscription
      • Delete Webhook Subscription
  1. Events

Get Events

GET
/v1/events
List the events under your firm
Sorted in reverse-chronological order, with more recent events first.
If you've created the corresponding matter using the "PreCreate" API call (or Zap) and passed in extra context variables then there will be an extra "context: {}" key under matter:
{
   "event_id":"evt_488E7673C7834A0DAC251AEACB816A1B",
   ...
   "matter":{
      "id":"matter_73871C22E693428287CAEB42F373A361",
      "context":{
         "other-system-id":"d2ae160b-08e7-4d83-aeee-04918d270013",
         "active-campaign-id":2944938
      }
   },
   ...
}

Request

Query Params

Responses

🟢200OK
application/json
OK
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/events?page_size'
Response Response Example
{
    "count": 2,
    "next": "https://api.decisionvault.com/v1/questionnaires?page=2",
    "previous": null,
    "results": [
        {
            "event_id": "evt_488E7673C7834A0DAC251AEACB816A1B",
            "event_type": "intakeform.submitted",
            "matter": {
                "id": "matter_73871C22E693428287CAEB42F373A361"
            },
            "meta": {
                "questionnaire": {
                    "id": "quest_5740A95819AF4CD08A339893184E2FD8",
                    "internal_type": "Planning"
                }
            },
            "occured_at": "2022-08-31T15:40:31Z",
            "user": {
                "id": "user_C7B2827A00454419BA324273EFA1FFF29",
                "is_firm_staff": false,
                "is_client_user": true
            }
        },
        {
            "event_id": "evt_6AD73C1740104BD1A9295D674E57D232",
            "event_type": "intakeform.started",
            "matter": {
                "id": "matter_73871C22E693428287CAEB42F373A361"
            },
            "meta": {
                "questionnaire": {
                    "id": "quest_5740A95819AF4CD08A339893184E2FD8",
                    "internal_type": "Planning"
                }
            },
            "occured_at": "2022-08-31T15:40:00Z",
            "user": {
                "id": "user_C7B2827A00454419BA324273EFA1FFF29",
                "is_firm_staff": false,
                "is_client_user": true
            }
        }
    ]
}
Modified at 2025-09-18 21:00:45
Previous
Create Matter
Next
Get Single Event
Built with