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 Documents for Matter

GET
/matters/{matter_id}/documents
Get a list of the documents uploaded to the matter by the client (under the "Documents" section of the questionnaire)

Request

Path Params

Query Params

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/matters//documents?uploaded_since=2025-06-25' \
--header 'Authorization: Token {{api_token}}'
Response Response Example
{
    "matter_id": "matter_AABB0011",
    "documents": [
        {
            "document_id": "document_P4382385FD7E34C7EABF154F5FCE8ADD4",
            "filename": "Gavel Demo Flow.docx",
            "size": 25020,
            "download_url": "https://aws-download-link.com",
            "expires_in": 600,
            "document_request": {
                "label": "New"
            },
            "uploaded_at": "2025-07-23T20:39:59Z"
        },
        {
            "document_id": "document_PD7EADD21F1F3471FA81369B9972BABDD",
            "filename": "253680767859.JPEG",
            "size": 132299,
            "download_url": "https://aws-download-link.com",
            "expires_in": 600,
            "document_request": {
                "label": "New"
            },
            "uploaded_at": "2025-06-30T02:17:05Z"
        },
        {
            "document_id": "document_PC7F2421887CF4A358BC6F5F407FD88FA",
            "filename": "kp-soc2-typeii-badge.png",
            "size": 13179,
            "download_url": "https://aws-download-link.com",
            "expires_in": 600,
            "document_request": {
                "label": "New"
            },
            "uploaded_at": "2025-06-30T02:16:43Z"
        },
        {
            "document_id": "document_P9F3067FD4CDC4ACFAE7DC8FEFED57A06",
            "filename": "Screenshot 2025-06-01 at 5.44.00 AM.png",
            "size": 25872,
            "download_url": "https://aws-download-link.com",
            "expires_in": 600,
            "document_request": {
                "label": "New"
            },
            "uploaded_at": "2025-06-03T11:50:56Z"
        }
    ],
    "count": 4,
    "next": null,
    "previous": null
}
Modified at 2025-09-21 17:32:35
Previous
Get Contacts for a Matter
Next
Get Financial Documents for Matter
Built with