InvestigationOrder.GetExisting

Try it in Swagger

Endpoint

Request Schema

Headers

Header Required Notes
X-Api-Key Required when tenant is not resolved by subdomain Resolves the tenant/customer database.
Authorization: Bearer {token} Required for authorized endpoints Get a token from Auth/Token or Session/Create.

Path Parameters

Field Type Required Notes
workOrder string Yes Route segment.

This endpoint does not accept a JSON request body.

Expected Response Schema

Status Codes

Status Notes
200 OK Returned by the controller for this operation.
404 Not Found Requested resource or draft was not found.

Success Body

Response type: ExistingInvestigationResponse

This endpoint resolves exported work orders only. See the Order Lifecycle guide for how draft web order ids become exported work order ids.

Field Type Required Max Length Notes
workOrder string Yes
customer string Yes
attorneyCode int? No
plaintiff string Yes
defendant string Yes
representing string Yes
representingName string Yes
referenceNumber string Yes
claimNumber string Yes
courtCode string Yes 12 Court code, not the court display name. See Court.Search, Court.GetAll, or Court.Get for court lookup details.
caseNumber string Yes
specialInstructions string Yes
scope string Yes
dateOfLoss DateTime? No
stateCode string Yes
county string Yes
billToAdjuster int? No
jobTypeCode int? No
dueDate DateTime? No

Response Sample

{
  "workOrder": "C123456",
  "customer": "ABC Legal Services",
  "attorneyCode": 123,
  "plaintiff": "Acme Corporation",
  "defendant": "John Doe",
  "representing": "Plaintiff",
  "representingName": "Acme Corporation",
  "referenceNumber": "REF-12345",
  "claimNumber": "CLM-12345",
  "courtCode": "LASC",
  "caseNumber": "24STCV12345",
  "specialInstructions": "Call before delivery.",
  "scope": "Locate and serve defendant",
  "dateOfLoss": "2026-05-07T00:00:00",
  "stateCode": "CA",
  "county": "Los Angeles",
  "billToAdjuster": 123,
  "jobTypeCode": 123,
  "dueDate": "2026-05-07T00:00:00"
}