Remove calendar delegation

This function removes a delegate from another user's calendar.

Note:

You must install the Calendar and Contacts Server cPanel plugin to access this API function.

SecurityBasicAuth
Request
query Parameters
delegatee
required
string <email>

The user from whom you wish to remove delegation rights.

Example: delegatee=user2@example.com
delegator
required
string <email>

The calendar's owner.

Example: delegator=user1@example.com
Responses
200

HTTP Request was successful.

Response Schema: application/json
apiversion
integer

The version of the API.

func
string

The name of the method called.

module
string

The name of the module called.

object
get/CCS/remove_delegate
Request samples
uapi --output=jsonpretty \
  --user=username \
  CCS \
  remove_delegate \
  delegator='user1@example.com' \
  delegatee='user2@example.com'
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "remove_delegate",
  • "module": "CCS",
  • "result": {
    • "errors": null,
    • "messages": null,
    • "metadata": { },
    • "status": 1,
    • "warnings": null
    }
}