# Get matter Retrieve a matter by its identifier Endpoint: GET /v2/matters/{matterId} ## Path parameters: - `matterId` (integer, required) The system identifier for the matter Example: 1056 ## Response 200 fields (application/json): - `id` (integer,null) The system identifier for the matter Example: 1056 - `name` (string,null) 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" - `displayId` (string,null) A system generated identifier of the matter. Also known as "LawVu ID" or "Matter Number" Example: "LV0001-0001" - `type` (object,null) The type of the matter - `type.id` (integer) The system identifier for the matter type Example: 7492 - `type.name` (string) The name of the matter type Example: "NDA" - `owner` (object,null) The user assigned as the owner of the matter - `owner.email` (string) The email of the user Example: "api.developer@lawvu.com" - `owner.firstName` (string) The first name of the user Example: "Api" - `owner.id` (string) The identifier of the user Example: "f0f1e06e-3005-4093-af7f-1934d55617e1" - `owner.lastName` (string) The last name of the user Example: "Developer" - `owner.organizationId` (integer) The organization the user belongs to Example: 8134 - `manager` (object,null) 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. - `manager.intakeQueue` (object,null) The intake queue for the organization that is assigned to manage the matter - `manager.intakeQueue.organizationName` (string) The name of the organization Example: "Api Development Organization" - `manager.user` (object,null) The user who is assigned to manage the matter - `externalId` (string,null) A unique user defined identifier that can be used to reference another system Example: "external-01" - `fields` (object,null) 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":[{"label":"Option A","value":"option_a"},{"label":"Option D","value":"option_d"}],"my_user_field":{"email":"api.developer@lawvu.com","firstName":"Api","id":"f0f1e06e-3005-4093-af7f-1934d55617e1","lastName":"Developer","organizationId":8134}} - `restricted` (boolean,null) Is the matter only available to members An indicator where the matter requires membership to access - `status` (string,null) The current status of the matter Enum: "Draft", "Scoping", "Review", "Active", "TasksLate", "MilestonesLate", "TasksAndMilestonesLate", "AwaitingManagerAcceptance", "AwaitingOwnerAcceptance", "Complete", "Archived", "OnHold" - `teamAssigned` (object,null) The team which this matter is assigned to - `teamAssigned.id` (integer) The identifier of the team Example: 469 - `teamAssigned.name` (string) The full name of the team Example: "Legal - Commercial" - `created` (object,null) The user who created the matter and when - `created.dateUtc` (string) The date and time the action was performed. The date and time uses the ISO-8601 format and will be in UTC Example: "2024-12-25T00:00:00Z" - `created.user` (object,null) The user who performed the action - `created.userName` (string) The username of who performed the action Example: "api.developer@lawvu.com" ## Response 404 fields (application/problem+json): - `detail` (string) More information about the problem. - `instance` (string) The URI of the resource which the error relates to. - `operationId` (string) A unique trace identifier for the request. This should be provided when requesting support. - `status` (integer) The HTTP status code for the problem. - `title` (string) A short description of the error. - `type` (string) A URI which can be followed to find out more about the problem.