GET Projects/Get/{ID}

Returns a specific Project by ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

ProjectDTO
NameDescriptionTypeAdditional information
Name

Gets or sets the project name

string

None.

Acronym

Gets or sets the project acronym

string

None.

StartDate

Gets or sets the start date

date

None.

EndDate

Gets or sets the project end date

date

None.

Deleted

Gets or sets the indicator to specify if deleted

boolean

None.

Active

Gets or sets the indicator to specify if activated

boolean

None.

Description

Gets or sets the description

string

None.

GroupID

Gets or sets the id of a group

globally unique identifier

None.

Group

Gets or sets the Group

string

None.

ID

globally unique identifier

None.

Timestamp

Collection of byte

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "Name": "sample string 1",
      "Acronym": "sample string 2",
      "StartDate": "2024-05-14T11:54:57Z",
      "EndDate": "2024-05-14T11:54:57Z",
      "Deleted": true,
      "Active": true,
      "Description": "sample string 5",
      "GroupID": "7e3b1556-af07-4950-b92e-000192d90388",
      "Group": "sample string 6",
      "ID": "30582c29-5c54-4cf2-bf93-8dacd20cb273",
      "Timestamp": "QEA="
    }
  ]
}

text/javascript

Sample:
{"results":[{"Name":"sample string 1","Acronym":"sample string 2","StartDate":"2024-05-14T11:54:57Z","EndDate":"2024-05-14T11:54:57Z","Deleted":true,"Active":true,"Description":"sample string 5","GroupID":"7e3b1556-af07-4950-b92e-000192d90388","Group":"sample string 6","ID":"30582c29-5c54-4cf2-bf93-8dacd20cb273","Timestamp":"QEA="}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<ProjectDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <ID xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">30582c29-5c54-4cf2-bf93-8dacd20cb273</ID>
  <Timestamp xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">QEA=</Timestamp>
  <Acronym>sample string 2</Acronym>
  <Active>true</Active>
  <Deleted>true</Deleted>
  <Description>sample string 5</Description>
  <EndDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2024-05-14T15:54:57.794507Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>-240</d2p1:OffsetMinutes>
  </EndDate>
  <Group>sample string 6</Group>
  <GroupID>7e3b1556-af07-4950-b92e-000192d90388</GroupID>
  <Name>sample string 1</Name>
  <StartDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2024-05-14T15:54:57.794507Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>-240</d2p1:OffsetMinutes>
  </StartDate>
</ProjectDTO>