CourtOrder.GetDraft

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
webOrder 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: CourtOrderResponse

Field Type Required Max Length Notes
webOrder string Yes
jobTypeCode int No
theirFileNumber string Yes
plaintiff string Yes
defendant 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
claimNumber string Yes
department string Yes
room string Yes
hearingDate DateTime? No
copyType string Yes
courtFile bool No
advanceFees bool No
advanceFeeAmount decimal? No
checkAttached bool No
checkAttachedAmount decimal? No
courtesyCopyDelivery bool No
statuteFiling bool No
eServe bool No
callClientWithCaseNumber bool No
rushReturnConformed bool No
researchCopy bool No
caseType int No
specialInstructions string Yes
documentsDescription string Yes
documents List<CourtOrderDocumentResponse> No

Response Sample

{
  "webOrder": "W123456",
  "jobTypeCode": 123,
  "theirFileNumber": "REF-12345",
  "plaintiff": "Acme Corporation",
  "defendant": "John Doe",
  "courtCode": "LASC",
  "caseNumber": "24STCV12345",
  "claimNumber": "CLM-12345",
  "department": "Dept 12",
  "room": "Room 305",
  "hearingDate": "2026-05-07T00:00:00",
  "copyType": "Standard",
  "courtFile": false,
  "advanceFees": false,
  "advanceFeeAmount": 123.45,
  "checkAttached": false,
  "checkAttachedAmount": 123.45,
  "courtesyCopyDelivery": false,
  "statuteFiling": false,
  "eServe": false
}