action enode_delete_users_userid_authorization { label: "Deauthorize User" description: "Deletes the User's stored vendor authorizations and credentials, invalidates any associated sessions, authorization codes, and access/refresh tokens.\n\nAll other User data is retained, and if the User is sent through the Link User flow in the future their account will be just as they left it.\n\nNo webhook events will be generated for a deauthorized user." provider: enode method: DELETE path: "/users/{userId}/authorization" encoding: json input: { type: "object" properties: { userId: { type: "string" } } required: ["userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }