WinCopyStatus.GetAll
Try it in Swagger
Endpoint
- Method:
GET
- Route:
WinCopyStatus/GetAll/{workOrder}/{facilityLineItem}
- 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 |
workOrder |
string |
Yes |
Route segment. |
facilityLineItem |
int |
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. |
Success Body
Response type: IReadOnlyList<WorkOrderStatusDto>
| Field |
Type |
Max Length |
Notes |
workOrder |
string |
|
|
facilityLineItem |
int |
|
|
report |
string |
|
|
date |
DateTime? |
|
|
time |
DateTime? |
|
|
Response Sample
[
{
"workOrder": "C123456",
"facilityLineItem": 123,
"report": "Attempted service at listed address.",
"date": "2026-05-07T00:00:00",
"time": "09:30 AM"
}
]