Skip to content

Copy ARK Profiles

Copy ARK-related setting profiles (useful for migrating between servers or profiles).

  • Method: POST
  • Path (REST): /setting/profile/copy
  • Body: CopyProfileRequest
  • Returns: 200 OK
CopyProfileRequest req = new CopyProfileRequest();
// req.setSource(...); req.setTargets(...);
client.settingProfileClient().copyArkProfiles(req).execute();
await client.settingProfileClient.copyArkProfiles({ /* fields */ });
client.setting_profile_client.copy_ark_profiles({ /* fields */ })
curl -X POST -H "Content-Type: application/json" \
  -d '{"...":"..."}' \
  https://api.gamemanager.cloud/setting/profile/copy