Delete a System Property

delete

/iam/governance/adminservice/api/v1/systemconfiguration/systemproperty/{keyword}

Deletes a particular System Property with the specified keyword.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

successful operation.
Body ()
Root Schema : ReturnedId
Type: object
Show Source

400 Response

Invalid input.
Back to Top

Examples

The following example shows how to delete a system property with the specified keyword by submitting a DELETE request on the REST resource using cURL. The information shown here is against a pseudo system and serves as a prototype.

cURL Example

curl -i -X DELETE -u username:password \
--header 'X-Requested-By: <anyvalue>' \
'http://pseudo.com/iam/governance/adminservice/api/v1/systemconfiguration/systemproperty/demoKey2'

Example of Response Body

The following example shows the JSON response for a request to delete the system property with the key ID 162:

{
    "sysPropertyKey": 162
}
Back to Top