GET v2/apps/{appId}/calendar
Returns an IEnumerable List of Calendar Response for the Master
Request Information
URI Parameters
| Name | Type | Description | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| appId | integer |
Application Id
Additional Info :
Required |
|||||||||||
Body Parameters
None.
Response Information
Resource Description
Collection of CalendarResponse| Name | Type | Description | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Id | integer |
Calendar Id |
|||||||||||
| AppId | integer |
App Id |
|||||||||||
| AppType | AppTypeEnum |
App Type |
|||||||||||
| Type | TypeEnum |
Type |
|||||||||||
| AccessType | AccessTypeEnum |
Access Type |
|||||||||||
| Name | string |
Calendar Name |
|||||||||||
| CreateDate | date |
Create Date |
|||||||||||
| UpdateDate | date |
Update Date |
|||||||||||
Response Formats
[
{
"id": 1,
"appId": 2,
"appType": 1,
"type": 1,
"accessType": 1,
"name": "sample string 3",
"createDate": "2025-11-01T03:49:52.9124933Z",
"updateDate": "2025-11-01T03:49:52.9124933Z"
},
{
"id": 1,
"appId": 2,
"appType": 1,
"type": 1,
"accessType": 1,
"name": "sample string 3",
"createDate": "2025-11-01T03:49:52.9124933Z",
"updateDate": "2025-11-01T03:49:52.9124933Z"
}
]
<ArrayOfCalendarResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppNotch.Converter.Api.Server.Models">
<CalendarResponse>
<AccessType>Private</AccessType>
<AppId>2</AppId>
<AppType>Master</AppType>
<CreateDate>2025-11-01T03:49:52.9124933+00:00</CreateDate>
<Id>1</Id>
<Name>sample string 3</Name>
<Type>Event</Type>
<UpdateDate>2025-11-01T03:49:52.9124933+00:00</UpdateDate>
</CalendarResponse>
<CalendarResponse>
<AccessType>Private</AccessType>
<AppId>2</AppId>
<AppType>Master</AppType>
<CreateDate>2025-11-01T03:49:52.9124933+00:00</CreateDate>
<Id>1</Id>
<Name>sample string 3</Name>
<Type>Event</Type>
<UpdateDate>2025-11-01T03:49:52.9124933+00:00</UpdateDate>
</CalendarResponse>
</ArrayOfCalendarResponse>