action id4i_remove_user_roles { label: "Remove role(s) from user" provider: id4i method: DELETE path: "/api/v1/organizations/{organizationId}/users/{username}/roles" encoding: json input: { type: "object" properties: { organizationId: { type: "string" } username: { type: "string" } } required: ["organizationId", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }