WinCopyMilestone.GetAll
Endpoint
- Method:
GET - Route:
WinCopyMilestone/GetAll - Authentication:
Authorize
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. |
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<CodeAndTitleDto>
Returns the milestone options (from WinCopyMilestones) for the photocopy Status Report. Submit the returned code value in NoteRequestDto.milestone; use title for display text.
| Field | Type | Max Length | Notes |
|---|---|---|---|
code |
string |
Milestone code to send as milestone. |
|
title |
string |
Display text for the milestone option. |
Response Sample
[
{
"code": "3",
"title": "Records Received Pending Production Date"
}
]