1. Matters
DecisionVault API
  • 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
      • Get Answers for Matter
        GET
      • Get Roles for Matter
        GET
      • Create Matter
        POST
      • Create Matter and Invite Clients
        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 Answers for Matter

GET
/v1/matters/{matter_id}/answers
Get the answers the client gave to the custom questions on the matter, grouped by the pages of the questionnaire and returned in page order.
Every page of the questionnaire is returned (except hidden pages and the asset / income intake pages), whether or not the client has reached it yet. A page with no custom questions returns an empty questions list.
Special answer values:
null - nothing answered yet
"" - answered with an empty value
[] - a PEOPLE_GROUP_BOX answered with nobody selected
active: false marks a "forgotten" answer: a question that is no longer asked on the questionnaire but still has an answer stored from before.
DATE answers are calendar dates (YYYY-MM-DD), not timestamps.
NUMBER answers are returned as strings, exactly as the client entered them.
Labels and answers are text entered by the firm and the client - treat them as untrusted when rendering.

Request

Path Params

Responses

🟢200OK
application/json
OK
Bodyapplication/json

🟠404Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/v1/matters//answers'
Response Response Example
200 - Success
{
    "matter": "matter_60320E3DF65D4CD1897B1A0CBC4BA5EE",
    "pages": [
        {
            "id": "page_3E4F5A6B7C8D49E0A1B2C3D4E5F60718",
            "title": "Welcome",
            "questions": []
        },
        {
            "id": "page_4F5A6B7C8D9E40F1B2C3D4E5F6071829",
            "title": "Your Wishes",
            "questions": [
                {
                    "id": "question_5A6B7C8D9E0F41A2B3C4D5E6F7081930",
                    "label": "Do you have a current will?",
                    "type": "YES_NO",
                    "active": true,
                    "answer": "Yes"
                },
                {
                    "id": "question_6B7C8D9E0F1A42B3C4D5E6F708192A41",
                    "label": "Where is your will stored?",
                    "type": "SHORT_TEXT",
                    "active": true,
                    "answer": "Safety deposit box at First National"
                },
                {
                    "id": "question_7C8D9E0F1A2B43C4D5E6F708192A3B52",
                    "label": "Date the will was signed",
                    "type": "DATE",
                    "active": true,
                    "answer": "2019-04-30"
                },
                {
                    "id": "question_8D9E0F1A2B3C44D5E6F708192A3B4C63",
                    "label": "How much do you want us to focus on tax planning?",
                    "type": "HIGH_MED_LOW",
                    "active": true,
                    "answer": "High"
                },
                {
                    "id": "question_9E0F1A2B3C4D45E6F708192A3B4C5D74",
                    "label": "Number of properties you own",
                    "type": "NUMBER",
                    "active": true,
                    "answer": "3"
                },
                {
                    "id": "question_0F1A2B3C4D5E46F708192A3B4C5D6E85",
                    "label": "Who should receive the family cabin?",
                    "type": "PEOPLE_GROUP_BOX",
                    "active": true,
                    "answer": [
                        {
                            "id": "contact_1A2B3C4D5E6F47889900AABBCCDDEEFF",
                            "name": "Alice Smith"
                        },
                        {
                            "id": "contact_2B3C4D5E6F708899AABBCCDDEEFF0011",
                            "name": "Bob Jones"
                        }
                    ]
                },
                {
                    "id": "question_1A2B3C4D5E6F47089192A3B4C5D6E7F9",
                    "label": "Anything else we should know?",
                    "type": "LONG_TEXT",
                    "active": true,
                    "answer": null
                },
                {
                    "id": "question_2B3C4D5E6F70481929A3B4C5D6E7F80A",
                    "label": "Do you own a business? (no longer asked)",
                    "type": "CHECKBOX_WITH_TEXT_INPUT",
                    "active": false,
                    "answer": "Yes - Smith Consulting LLC"
                }
            ]
        },
        {
            "id": "page_5A6B7C8D9E0F41A2B3C4D5E6F7081930",
            "title": "Documents",
            "questions": []
        }
    ]
}
Modified at 2026-08-25 15:51:16
Previous
Get Financial Documents for Matter
Next
Get Roles for Matter
Built with