GET api/Client_Details/CalendarList?ProjectID={ProjectID}&UserID={UserID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectID | integer |
Required |
|
| UserID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Calendar| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | integer |
None. |
|
| ShortContent | string |
None. |
|
| SelectedDate | date |
None. |
|
| CSPID | integer |
None. |
|
| RiskID | integer |
None. |
|
| MDTID | integer |
None. |
|
| DueFormID | integer |
None. |
|
| PendingFormID | integer |
None. |
|
| URL | string |
None. |
|
| FormID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ClientID": 1,
"ShortContent": "sample string 2",
"SelectedDate": "2026-06-30T14:16:59.9483575+01:00",
"CSPID": 4,
"RiskID": 5,
"MDTID": 6,
"DueFormID": 7,
"PendingFormID": 8,
"URL": "sample string 9",
"FormID": 1
},
{
"ClientID": 1,
"ShortContent": "sample string 2",
"SelectedDate": "2026-06-30T14:16:59.9483575+01:00",
"CSPID": 4,
"RiskID": 5,
"MDTID": 6,
"DueFormID": 7,
"PendingFormID": 8,
"URL": "sample string 9",
"FormID": 1
}
]
text/xml
Sample:
<ArrayOfCalendar xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Models">
<Calendar>
<CSPID>4</CSPID>
<ClientID>1</ClientID>
<DueFormID>7</DueFormID>
<FormID>1</FormID>
<MDTID>6</MDTID>
<PendingFormID>8</PendingFormID>
<RiskID>5</RiskID>
<SelectedDate>2026-06-30T14:16:59.9483575+01:00</SelectedDate>
<ShortContent>sample string 2</ShortContent>
<URL>sample string 9</URL>
</Calendar>
<Calendar>
<CSPID>4</CSPID>
<ClientID>1</ClientID>
<DueFormID>7</DueFormID>
<FormID>1</FormID>
<MDTID>6</MDTID>
<PendingFormID>8</PendingFormID>
<RiskID>5</RiskID>
<SelectedDate>2026-06-30T14:16:59.9483575+01:00</SelectedDate>
<ShortContent>sample string 2</ShortContent>
<URL>sample string 9</URL>
</Calendar>
</ArrayOfCalendar>