action rudder_reload_user_conf { label: "Reload user" description: "Reload the users from the file system, in the configuration file" provider: rudder method: GET path: "/usermanagement/users/reload" encoding: json output: { type: "object" required: ["action", "data", "result"] properties: { action: { type: "string" description: "The id of the action" enum: ["reloadUserConf"] } data: { type: "object" required: ["reload"] properties: { reload: { type: "object" required: ["status"] properties: { status: { type: "string" } } } } } result: { type: "string" description: "Result of the request" enum: ["success", "error"] } } } }