Retrieve a matter by its identifier
- Sandbox APIhttps://api-sandbox.lawvu.com/v2/matters/{matterId}
- Production APIhttps://api.lawvu.com/v2/matters/{matterId}
const matterId = '1056';
const resp = await fetch(
`https://api-sandbox.lawvu.com/v2/matters/${matterId}`,
{method: 'GET'}
);
const data = await resp.text();
console.log(data);OK
The user defined name of the matter
When simple ticketing is enabled for the organization then the Name is going to be optional and will default to simple ticketing rules, otherwise is required.
Example:"My matter"
A system generated identifier of the matter. Also known as "LawVu ID" or "Matter Number"
Example:"LV0001-0001"
The user managing the matter or the intake queue for an organization.
Only one of User and IntakeQueue can be assigned to a matter at a time.
A unique user defined identifier that can be used to reference another system
Example:"external-01"
The collection of fields associated with the matter
Example:
{ "my_text_field": "my text value", "my_decimal_field": 78659.84, "my_boolean_field": true, "my_date_field": "2025-05-06", "my_option_field": { "label": "Option 1", "value": "option_1" }, "my_multioption_field": [ { … }, { … } ], "my_user_field": { "email": "api.developer@lawvu.com", "firstName": "Api", "id": "f0f1e06e-3005-4093-af7f-1934d55617e1", "lastName": "Developer", "organization": { … }, "organizationId": 8134 } }
Is the matter only available to members
An indicator where the matter requires membership to access
Default:false
Example:false
The current status of the matter
Enum:"Draft""Scoping""Review""Active""TasksLate""MilestonesLate""TasksAndMilestonesLate""AwaitingManagerAcceptance""AwaitingOwnerAcceptance""Complete"
Example:"Active"
Response
{ "id": 1056, "name": "My matter", "displayId": "LV0001-0001", "type": { "id": 7492, "name": "NDA" }, "owner": { "email": "api.developer@lawvu.com", "firstName": "Api", "id": "f0f1e06e-3005-4093-af7f-1934d55617e1", "lastName": "Developer", "organization": { … }, "organizationId": 8134 }, "manager": { "intakeQueue": { … }, "user": { … } }, "externalId": "external-01", "fields": { "my_text_field": "my text value", "my_decimal_field": 78659.84, "my_boolean_field": true, "my_date_field": "2025-05-06", "my_option_field": { … }, "my_multioption_field": [ … ], "my_user_field": { … } }, "restricted": false, "status": "Active", "teamAssigned": { "id": 469, "name": "Legal - Commercial" }, "created": { "dateUtc": "2024-12-25T00:00:00Z", "user": { … }, "userName": "api.developer@lawvu.com" } }