Delete a instance configuration
Delete the instance configuration with the given id.
Path parameters
-
id
string Required ID of the instance configuration
Query parameters
-
version
integer This is a database-level field, not related to the application-level 'config_version', except as described in the following docs. If specified, checks for conflicts against 'x-cloud-resource-version' from the GET request (the GET's 'config_version' should be left blank if the IC is configuration controlled, ie to get the latest configuration)
-
only_test_version
boolean If true, the testing version (version -1) will be permanently deleted but the latest IC version will remain untouched. Defaults to false
Responses
-
200 application/json
Instance configuration specified by {id} was deleted
-
403 application/json
Instance configuration specified by {id} is system owned (code: 'configuration.system_owned')
-
404 application/json
Instance configuration specified by {id} cannot be found or the operation failed (code: 'configuration.instance_configuration_not_found')
curl \
--request DELETE 'https://{{hostname}}/api/v1/platform/configuration/instances/{id}' \
--user "username:password"