ProcessStatus.Search
Try it in Swagger
Endpoint
- Method:
POST
- Route:
ProcessStatus/Search
- 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. |
JSON Body
Body type: StatusOnlineSearchDto
| Field |
Type |
Required |
Max Length |
Notes |
customers |
string[] |
No |
|
Customer codes to search. Defaults to the authenticated customer when omitted. |
contact |
int? |
No |
|
Contact code filter. Contacts with "limit search to my orders" enabled are locked to their own contact code. |
attorney |
int? |
No |
|
Attorney code filter. |
keywords |
string |
No |
|
Matches the same fields as Tristar.Web Status Online, including work order, file number, case number, parties, and other stored procedure-supported fields. |
within |
StatusOnlineTimeEnum |
No |
|
ThirtyDays, SixtyDays, SixMonth, or NoLimit. |
inProcess |
bool |
No |
|
Include process orders. If all order-type flags are omitted or false, all order types are included. |
inCourt |
bool |
No |
|
Include court orders. |
inDelivery |
bool |
No |
|
Include delivery orders. |
inProgress |
bool |
No |
|
Return in-progress orders only. |
inInvestigation |
bool |
No |
|
Include investigation orders. |
inPhotocopy |
bool |
No |
|
Include photocopy orders. |
fromDate |
DateTime? |
No |
|
Date received range start. |
toDate |
DateTime? |
No |
|
Date received range end. |
containRecords |
bool |
No |
|
Photocopy records filter used by Status Online. |
Request Sample
{
"customers": ["8888"],
"keywords": "000001428625",
"within": "NoLimit",
"inProcess": true,
"inCourt": true,
"inDelivery": true,
"inInvestigation": true,
"inPhotocopy": true,
"inProgress": false,
"fromDate": "2026-05-20T00:00:00",
"toDate": "2026-05-26T00:00:00",
"containRecords": false
}
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: IReadOnlyList<StatusOnlineResultDto>
| Field |
Type |
Max Length |
Notes |
workOrder |
string |
|
|
fileNumber |
string |
|
Customer file/reference number. |
caseNumber |
string |
|
|
date |
DateTime? |
|
Date received. |
proofOfDeliveryDate |
DateTime? |
|
Proof of delivery date when available. |
hearingDate |
DateTime? |
|
Hearing date when available. |
name |
string |
|
Search result name/party/facility. |
street |
string |
|
|
city |
string |
|
|
state |
string |
|
|
zip |
string |
|
|
addressString |
string |
|
Combined address display value. |
type |
string |
|
Court, ProcessOrder, Delivery, Investigation, or Photocopy. |
status |
string |
|
|
claimNumber |
string |
|
|
subject |
string |
|
|
containRecords |
string |
|
Photocopy records display value. |
downloadedByJson |
string |
|
Raw photocopy download metadata. |
downloadedBy |
string |
|
Photocopy records display value. |
Response Sample
[
{
"workOrder": "C123456",
"fileNumber": "REF-12345",
"caseNumber": "24STCV12345",
"date": "2026-05-07T00:00:00",
"proofOfDeliveryDate": null,
"hearingDate": null,
"name": "John Doe",
"street": "123 Main St",
"city": "Los Angeles",
"state": "CA",
"zip": "90012",
"addressString": "123 Main St, Los Angeles, CA 90012",
"type": "Court",
"status": "Open",
"claimNumber": "CLM-12345",
"subject": "PATRICIA E. NGUYEN",
"containRecords": "",
"downloadedByJson": "",
"downloadedBy": ""
}
]