List cPanel account's calendar delegates

This function lists all calendar delegates on the cPanel account.

Note:

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

SecurityBasicAuth
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/list_delegates
Request samples
uapi --output=jsonpretty \
  --user=username \
  CCS \
  list_delegates
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "list_delegates",
  • "module": "CCS",
  • "result": {
    • "data": [
      • {
        • "delegatee": "delegatee@cptest.test",
        • "delegator": "delegator@cptest.test",
        • "read_only": 1
        }
      ],
    • "errors": null,
    • "messages": null,
    • "metadata": { },
    • "status": 1,
    • "warnings": null
    }
}