Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

DELETE
/api/v1/service-preference/{serviceId}/{key}

Parameters

...

Parameter

Description

Parameter Type

serviceId

...

This of the service which they key needs to be removed

path

key

...

The service setting key

path

Returns

200 OK

Example

Code Block
languagec#
const string key = "Your Key";

...


const int serviceId = 0;

...


var serviceSetting = await _serviceSettingManager.Delete(serviceId, key);