POST api/Admin/Calendars/DeleteShare
Removes a shared calendar key.
Request Information
URI Parameters
None.
Body Parameters
DeleteSharedCalendarKeyRequest
DeleteSharedCalendarKeyRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| KeyId |
Shared authorization key. |
integer |
Required |
| ChangedBy |
Changed by. |
string |
Required |
Remarks
Example
None.
Request Formats
application/json, text/json
Sample:
{
"KeyId": 1,
"ChangedBy": "sample string 3"
}
application/xml, text/xml
Sample:
<DeleteSharedCalendarKeyRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.Calendar.Service.DTO"> <ChangedBy>sample string 3</ChangedBy> <KeyId>1</KeyId> </DeleteSharedCalendarKeyRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
204 No Content on success.
None.