deleteUserConfiguration
Deletes the specified configuration for the specified user.
Applies to Clouds and Integration Appliances.
Parameters:
- userName
- The name of the specified user.
- projectName
- The name of the specified project.
- version
- The version number for the specified project.
- configName
- The configuration name for the specified project.
Together projectName, version, and configName uniquely identify a configuration.
Examples:
The following example is a SOAP
request to delete the specified configuration.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:dep="http://www.approuter.com/schemas/2008/1/deployment">
<soapenv:Header>
<dep:sessionId>AACA96757B36C2B4582C811197EE43C0</dep:sessionId>
</soapenv:Header>
<soapenv:Body>
<dep:deleteConfiguration>
<dep:projectName>HTTP_363i</dep:projectName>
<dep:version>1.0</dep:version>
<dep:configName>HTTP_363j</dep:configName>
</dep:deleteConfiguration>
</soapenv:Body>
</soapenv:Envelope>
The following example is
the SOAP reply to the request.
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns2:deleteConfigurationResponse xmlns:ns2="http://www.approuter.com/
schemas/2008/1/deployment" xmlns:ns3="http://www.approuter.com/schemas/2008/1/
deployment/types" xmlns:ns4="http://www.approuter.com/schema/router/1000/
security/03" xmlns:ns5="http://www.approuter.com/schemas/2008/1/util/types">
<ns2:success>true</ns2:success>
</ns2:deleteConfigurationResponse>
</S:Body>
</S:Envelope>