CountyRecordingOrder.GetDraft
Try it in Swagger
Endpoint
- Method:
GET
- Route:
CountyRecordingOrder/GetDraft/{webOrder}
- Authentication:
Authorize
Request Schema
| 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: CountyRecordingOrderResponse
| 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 |
|
|
hearingDate |
DateTime? |
No |
|
|
advanceFees |
bool |
No |
|
|
advanceFeeAmount |
decimal? |
No |
|
|
checkAttached |
bool |
No |
|
|
checkAttachedAmount |
decimal? |
No |
|
|
copyType |
string |
Yes |
|
|
specialInstructions |
string |
Yes |
|
|
documentsDescription |
string |
Yes |
|
|
documents |
List<CountyRecordingDocumentResponse> |
No |
|
|
Response Sample
{
"webOrder": "W123456",
"orderType": 123,
"referenceNumber": "REF-12345",
"plaintiff": "Acme Corporation",
"defendant": "John Doe",
"courtCode": "LASC",
"caseNumber": "24STCV12345",
"hearingDate": "2026-05-07T00:00:00",
"advanceFees": false,
"advanceFeeAmount": 123.45,
"checkAttached": false,
"checkAttachedAmount": 123.45,
"copyType": "Standard",
"specialInstructions": "Call before delivery.",
"documentsDescription": "Summons and complaint",
"documents": [
{
"name": "summons.pdf",
"id": "doc-123"
}
]
}