GET api/Project/GetPhaseDates
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of PhaseDate| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectID | integer |
None. |
|
| ProjectDescription | string |
None. |
|
| PhaseID | integer |
None. |
|
| PhaseDescription | string |
None. |
|
| DateNumber | integer |
None. |
|
| DateName | string |
None. |
|
| DateValue | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ProjectID": 1,
"ProjectDescription": "sample string 2",
"PhaseID": 3,
"PhaseDescription": "sample string 4",
"DateNumber": 5,
"DateName": "sample string 6",
"DateValue": "2026-04-17T09:52:15.2466143-04:00"
},
{
"ProjectID": 1,
"ProjectDescription": "sample string 2",
"PhaseID": 3,
"PhaseDescription": "sample string 4",
"DateNumber": 5,
"DateName": "sample string 6",
"DateValue": "2026-04-17T09:52:15.2466143-04:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfPhaseDate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CrowsNest.Api">
<PhaseDate>
<DateName>sample string 6</DateName>
<DateNumber>5</DateNumber>
<DateValue>2026-04-17T09:52:15.2466143-04:00</DateValue>
<PhaseDescription>sample string 4</PhaseDescription>
<PhaseID>3</PhaseID>
<ProjectDescription>sample string 2</ProjectDescription>
<ProjectID>1</ProjectID>
</PhaseDate>
<PhaseDate>
<DateName>sample string 6</DateName>
<DateNumber>5</DateNumber>
<DateValue>2026-04-17T09:52:15.2466143-04:00</DateValue>
<PhaseDescription>sample string 4</PhaseDescription>
<PhaseID>3</PhaseID>
<ProjectDescription>sample string 2</ProjectDescription>
<ProjectID>1</ProjectID>
</PhaseDate>
</ArrayOfPhaseDate>