Skip to content

Update Profile

Update fields in a setting profile.

  • Method: POST
  • Path (REST): /setting/profile
  • Body: SettingProfileUpdateRequest
  • Returns: 200 OK
SettingProfileUpdateRequest update = new SettingProfileUpdateRequest();
update.setProfileId("prof-1");
client.settingProfileClient().updateProfile(update).execute();
await client.settingProfileClient.updateProfile({ profileId: 'prof-1' /* fields */ });
client.setting_profile_client.update_profile({ 'profileId': 'prof-1' })
curl -X POST -H "Content-Type: application/json" \
  -H "Application-Token: $GMC_APP_TOKEN" \
  -d '{"profileId":"prof-1"}' \
  https://api.gamemanager.cloud/setting/profile