GET api/REST/GetProjectInfos?fromUTC={fromUTC}&toUTC={toUTC}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| fromUTC | string |
Required |
|
| toUTC | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ProjectInfos| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Project | string |
None. |
|
| CreationDate | date |
None. |
|
| LastUpdated | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Project": "sample string 2",
"CreationDate": "2025-12-13T09:11:26.3288191+00:00",
"LastUpdated": "2025-12-13T09:11:26.3288191+00:00"
},
{
"Id": 1,
"Project": "sample string 2",
"CreationDate": "2025-12-13T09:11:26.3288191+00:00",
"LastUpdated": "2025-12-13T09:11:26.3288191+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfProjectInfos xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CloudInteractionBridge.DataClasses">
<ProjectInfos>
<CreationDate>2025-12-13T09:11:26.3288191+00:00</CreationDate>
<Id>1</Id>
<LastUpdated>2025-12-13T09:11:26.3288191+00:00</LastUpdated>
<Project>sample string 2</Project>
</ProjectInfos>
<ProjectInfos>
<CreationDate>2025-12-13T09:11:26.3288191+00:00</CreationDate>
<Id>1</Id>
<LastUpdated>2025-12-13T09:11:26.3288191+00:00</LastUpdated>
<Project>sample string 2</Project>
</ProjectInfos>
</ArrayOfProjectInfos>