GET api/ProjectVersions?ProjectcId={ProjectcId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectcId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ProjectVersions| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectVersionId | globally unique identifier |
None. |
|
| Version | integer |
None. |
|
| ProjectId | globally unique identifier |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| ProjectVersionStatusId | integer |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ProjectVersionId": "e1228e27-8888-4c83-bef5-a20ef723d7d3",
"Version": 1,
"ProjectId": "cf5f0b61-6d27-4c40-8395-ab21c6b2f4cf",
"StartDate": "2026-03-05T12:08:47.76735+01:00",
"EndDate": "2026-03-05T12:08:47.76735+01:00",
"ProjectVersionStatusId": 1,
"Description": "sample string 3"
},
{
"ProjectVersionId": "e1228e27-8888-4c83-bef5-a20ef723d7d3",
"Version": 1,
"ProjectId": "cf5f0b61-6d27-4c40-8395-ab21c6b2f4cf",
"StartDate": "2026-03-05T12:08:47.76735+01:00",
"EndDate": "2026-03-05T12:08:47.76735+01:00",
"ProjectVersionStatusId": 1,
"Description": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfProjectVersions xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CLToolApi">
<ProjectVersions>
<Description>sample string 3</Description>
<EndDate>2026-03-05T12:08:47.76735+01:00</EndDate>
<ProjectId>cf5f0b61-6d27-4c40-8395-ab21c6b2f4cf</ProjectId>
<ProjectVersionId>e1228e27-8888-4c83-bef5-a20ef723d7d3</ProjectVersionId>
<ProjectVersionStatusId>1</ProjectVersionStatusId>
<StartDate>2026-03-05T12:08:47.76735+01:00</StartDate>
<Version>1</Version>
</ProjectVersions>
<ProjectVersions>
<Description>sample string 3</Description>
<EndDate>2026-03-05T12:08:47.76735+01:00</EndDate>
<ProjectId>cf5f0b61-6d27-4c40-8395-ab21c6b2f4cf</ProjectId>
<ProjectVersionId>e1228e27-8888-4c83-bef5-a20ef723d7d3</ProjectVersionId>
<ProjectVersionStatusId>1</ProjectVersionStatusId>
<StartDate>2026-03-05T12:08:47.76735+01:00</StartDate>
<Version>1</Version>
</ProjectVersions>
</ArrayOfProjectVersions>