1 operation(s). Part of the API index.
Call these as client.<service>.<method>(...). <service> is the client field for this
group — the README lists the field name for every service.
These pages group operations the way the OpenAPI specification tags them, which
is not always one field per page.
POST /bulk/upsert
Batch upload Users
Uploads an array of Users with optional Password and migration configuration.
public static void callBatchUpload(LoginRadiusClient client) {
BatchUpload batchUpload = new BatchUpload().profiles("<profiles>"); //Required
try {
var response = client.userMigration.batchUpload(batchUpload);
System.out.println(response);
} catch (ApiException e) {
LoginRadiusException lr = LoginRadiusClient.toLoginRadiusException(e);
System.err.println(lr.description());
}
}BatchUpload as application/json.
BatchUploadResponse