action clickmeter_account_patch_permissions { label: "Change the permission on a shared object" provider: clickmeter method: PUT path: "/account/guests/{guestId}/{type}/permissions/patch" encoding: json input: { type: "object" properties: { guestId: { type: "integer" format: "int64" } type: { type: "string" enum: ["datapoint", "group"] } } required: ["guestId", "type"] additionalProperties: false } output: { type: "object" properties: { id: { type: "integer" format: "int64" } uri: { type: "string" } } } }