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": "45a38ca9-bf16-460d-aa64-7f5bccdd3657",
"Version": 1,
"ProjectId": "37639e9e-579b-4646-9e72-def433ae66a7",
"StartDate": "2026-07-23T23:16:20.1514222+02:00",
"EndDate": "2026-07-23T23:16:20.1514222+02:00",
"ProjectVersionStatusId": 1,
"Description": "sample string 3"
},
{
"ProjectVersionId": "45a38ca9-bf16-460d-aa64-7f5bccdd3657",
"Version": 1,
"ProjectId": "37639e9e-579b-4646-9e72-def433ae66a7",
"StartDate": "2026-07-23T23:16:20.1514222+02:00",
"EndDate": "2026-07-23T23:16:20.1514222+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-07-23T23:16:20.1514222+02:00</EndDate>
<ProjectId>37639e9e-579b-4646-9e72-def433ae66a7</ProjectId>
<ProjectVersionId>45a38ca9-bf16-460d-aa64-7f5bccdd3657</ProjectVersionId>
<ProjectVersionStatusId>1</ProjectVersionStatusId>
<StartDate>2026-07-23T23:16:20.1514222+02:00</StartDate>
<Version>1</Version>
</ProjectVersions>
<ProjectVersions>
<Description>sample string 3</Description>
<EndDate>2026-07-23T23:16:20.1514222+02:00</EndDate>
<ProjectId>37639e9e-579b-4646-9e72-def433ae66a7</ProjectId>
<ProjectVersionId>45a38ca9-bf16-460d-aa64-7f5bccdd3657</ProjectVersionId>
<ProjectVersionStatusId>1</ProjectVersionStatusId>
<StartDate>2026-07-23T23:16:20.1514222+02:00</StartDate>
<Version>1</Version>
</ProjectVersions>
</ArrayOfProjectVersions>