action clickmeter_account_get_permissions_count { label: "Retrieve count of the permissions for a guest" provider: clickmeter method: GET path: "/account/guests/{guestId}/permissions/count" encoding: json input: { type: "object" properties: { entityId: { type: "integer" format: "int64" } entityType: { type: "string" enum: ["datapoint", "group"] } guestId: { type: "integer" format: "int64" } type: { type: "string" enum: ["r", "w"] } } required: ["guestId"] additionalProperties: false } output: { type: "object" properties: { count: { type: "integer" format: "int64" } } } }