updateInstanceConfig abstract method

  1. @POST.new('/admin/instance-config/update')
Future<InstanceConfigResponse> updateInstanceConfig({
  1. @Body.new() required InstanceConfigUpdateRequest body,
})

Update instance configuration.

Updates instance configuration settings including webhook URLs and SSO parameters. Changes apply immediately. Requires INSTANCE_CONFIG_UPDATE permission.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/instance-config/update')
Future<InstanceConfigResponse> updateInstanceConfig({
  @Body() required InstanceConfigUpdateRequest body,
});