action openchannel_post_ownership_uninstall_ownership_id { label: "Uninstalls a license for a particular user and app (uninstalls app)" description: " - This method is called on behalf of a user - User data and statistics are recorded when this method is called " provider: openchannel method: POST path: "/ownership/uninstall/{ownershipId}" encoding: json input: { type: "object" properties: { cancelOwnership: { type: "boolean" } customData: { type: "string" } ownershipId: { type: "string" } userId: { type: "string" } } required: ["ownershipId", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }