action clickmeter_account_delete_guest { label: "Delete a guest" provider: clickmeter method: DELETE path: "/account/guests/{guestId}" encoding: json input: { type: "object" properties: { guestId: { type: "integer" format: "int64" } } required: ["guestId"] additionalProperties: false } output: { type: "object" properties: { id: { type: "integer" format: "int64" } uri: { type: "string" } } } }