Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 1.07 KB

File metadata and controls

45 lines (29 loc) · 1.07 KB

User Migration

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.


batchUpload

POST /bulk/upsert

Batch upload Users

Uploads an array of Users with optional Password and migration configuration.

Example

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());
  }
}

Request body

BatchUpload as application/json.

Returns

BatchUploadResponse