...
DELETE
/api/v1/service-settings/{serviceId}/{key}
Parameters
...
Parameter | Description | Parameter Type |
---|---|---|
serviceId | The service id associated to the service setting | path |
key | The service setting key | path |
Returns
200 OK
Example
Code Block | ||
---|---|---|
| ||
const string key = " |
...
YourKey"; |
...
const int serviceId = |
...
11; await _serviceSettingManager.Delete(serviceId, key); |