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": "5d2f9c67-b48d-4b64-8c00-36faa59237b4",
"Version": 1,
"ProjectId": "8efaa100-7ac0-4e59-9a79-fd2e9008b946",
"StartDate": "2026-06-10T14:23:59.718283+02:00",
"EndDate": "2026-06-10T14:23:59.718283+02:00",
"ProjectVersionStatusId": 1,
"Description": "sample string 3"
},
{
"ProjectVersionId": "5d2f9c67-b48d-4b64-8c00-36faa59237b4",
"Version": 1,
"ProjectId": "8efaa100-7ac0-4e59-9a79-fd2e9008b946",
"StartDate": "2026-06-10T14:23:59.718283+02:00",
"EndDate": "2026-06-10T14:23:59.718283+02: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-06-10T14:23:59.718283+02:00</EndDate>
<ProjectId>8efaa100-7ac0-4e59-9a79-fd2e9008b946</ProjectId>
<ProjectVersionId>5d2f9c67-b48d-4b64-8c00-36faa59237b4</ProjectVersionId>
<ProjectVersionStatusId>1</ProjectVersionStatusId>
<StartDate>2026-06-10T14:23:59.718283+02:00</StartDate>
<Version>1</Version>
</ProjectVersions>
<ProjectVersions>
<Description>sample string 3</Description>
<EndDate>2026-06-10T14:23:59.718283+02:00</EndDate>
<ProjectId>8efaa100-7ac0-4e59-9a79-fd2e9008b946</ProjectId>
<ProjectVersionId>5d2f9c67-b48d-4b64-8c00-36faa59237b4</ProjectVersionId>
<ProjectVersionStatusId>1</ProjectVersionStatusId>
<StartDate>2026-06-10T14:23:59.718283+02:00</StartDate>
<Version>1</Version>
</ProjectVersions>
</ArrayOfProjectVersions>