Skip to content

Get Setting Profile

Fetch a setting profile by ID.

  • Method: GET
  • Path (REST): /setting/profile/{profileId}
  • Returns: SettingProfile
SettingProfile profile = client.settingProfileClient().getProfile("prof-1").execute();
const profile = await client.settingProfileClient.getProfile('prof-1');
profile = client.setting_profile_client.get_profile('prof-1')
curl -s -H "Application-Token: $GMC_APP_TOKEN" \
  https://api.gamemanager.cloud/setting/profile/prof-1