FileAndServeOrder.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: FileAndServeOrderResponse

Field Type Required Max Length Notes
webOrder string Yes
orderType int No
referenceNumber 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
department string Yes
room string Yes
hearingDate DateTime? No
advanceFees bool No
checkAttached bool No
callClientWithCaseNumber bool No
statuteFiling bool No
rushReturnConfirmed bool No
representingName string Yes
representingCode int? No
specialInstructions string Yes
documentsDescription string Yes
servees List<FileAndServeServeeResponse> No
documents List<FileAndServeDocumentResponse> No

Response Sample

{
  "webOrder": "W123456",
  "orderType": 123,
  "referenceNumber": "REF-12345",
  "plaintiff": "Acme Corporation",
  "defendant": "John Doe",
  "courtCode": "LASC",
  "caseNumber": "24STCV12345",
  "department": "Dept 12",
  "room": "Room 305",
  "hearingDate": "2026-05-07T00:00:00",
  "advanceFees": false,
  "checkAttached": false,
  "callClientWithCaseNumber": false,
  "statuteFiling": false,
  "rushReturnConfirmed": false,
  "representingName": "Acme Corporation",
  "representingCode": 123,
  "specialInstructions": "Call before delivery.",
  "documentsDescription": "Summons and complaint",
  "servees": [
    {
      "name": "John Doe"
    }
  ]
}