GET api/ProjectVersions?ProjectcId={ProjectcId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ProjectcId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ProjectVersions
NameDescriptionTypeAdditional 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": "6f1d34e9-a059-428f-b205-36fb8b847377",
    "Version": 1,
    "ProjectId": "dd94e336-0347-4ad8-a0ea-eafdf849408c",
    "StartDate": "2026-01-22T14:37:36.7784219+01:00",
    "EndDate": "2026-01-22T14:37:36.7784219+01:00",
    "ProjectVersionStatusId": 1,
    "Description": "sample string 3"
  },
  {
    "ProjectVersionId": "6f1d34e9-a059-428f-b205-36fb8b847377",
    "Version": 1,
    "ProjectId": "dd94e336-0347-4ad8-a0ea-eafdf849408c",
    "StartDate": "2026-01-22T14:37:36.7784219+01:00",
    "EndDate": "2026-01-22T14:37:36.7784219+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-01-22T14:37:36.7784219+01:00</EndDate>
    <ProjectId>dd94e336-0347-4ad8-a0ea-eafdf849408c</ProjectId>
    <ProjectVersionId>6f1d34e9-a059-428f-b205-36fb8b847377</ProjectVersionId>
    <ProjectVersionStatusId>1</ProjectVersionStatusId>
    <StartDate>2026-01-22T14:37:36.7784219+01:00</StartDate>
    <Version>1</Version>
  </ProjectVersions>
  <ProjectVersions>
    <Description>sample string 3</Description>
    <EndDate>2026-01-22T14:37:36.7784219+01:00</EndDate>
    <ProjectId>dd94e336-0347-4ad8-a0ea-eafdf849408c</ProjectId>
    <ProjectVersionId>6f1d34e9-a059-428f-b205-36fb8b847377</ProjectVersionId>
    <ProjectVersionStatusId>1</ProjectVersionStatusId>
    <StartDate>2026-01-22T14:37:36.7784219+01:00</StartDate>
    <Version>1</Version>
  </ProjectVersions>
</ArrayOfProjectVersions>