ProcessOrder.GetExistingCourtOrder

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 Exported Winserve court work order.

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 Exported court work order was not found for the authenticated customer.

Success Body

Response type: ExistingCourtResponse

This endpoint returns the same exported court order shape as CourtOrder/GetExisting/{workOrder}, including status, milestone, and the court order detail payload used by the ProcessStatus page.

Response Sample

{
  "workOrder": "CL123456",
  "customer": "ABC Legal Services",
  "contactCode": 456,
  "caseType": 1,
  "jobCategory": "Court Filing",
  "referenceNumber": "REF-12345",
  "adjuster": 123,
  "billToAdjuster": 123,
  "plaintiff": "Acme Corporation",
  "defendant": "John Doe",
  "courtCode": "LASC",
  "stateCode": "CA",
  "county": "Los Angeles",
  "caseNumber": "24STCV12345",
  "claimNumber": "CLM-12345",
  "department": "Dept 12",
  "room": "Room 305",
  "hearingDate": "2026-05-07T00:00:00",
  "winserveWorkOrder": "CL123456",
  "status": "AT COURT",
  "milestone": "AT COURT",
  "specialInstructions": "Call before delivery.",
  "jobType": "Court Filing",
  "caseDetails": {
    "contact": "Maria Contact",
    "dateReceived": "2026-05-07T00:00:00",
    "case": "24STCV12345",
    "claimNumber": "CLM-12345",
    "plaintiff": "Acme Corporation",
    "defendant": "John Doe",
    "fileDate": "2026-05-14T00:00:00",
    "documentsServed": "Summons and complaint",
    "referenceNumber": "REF-12345",
    "attorney": "Jane Attorney",
    "hearingDate": "2026-05-07T00:00:00",
    "hearingTime": "09:30 AM",
    "courtName": "Los Angeles Superior Court",
    "address1": "111 N Hill St",
    "city": "Los Angeles",
    "state": "CA",
    "postalCode": "90012",
    "downloads": [],
    "images": []
  },
  "statusUpdates": [],
  "deliveryInformation": null,
  "invoiceDetails": [],
  "downloads": [],
  "hasStatusUpdates": false,
  "hasInvoice": false,
  "hasProofOfDelivery": false,
  "hasDownloads": false
}