Cisco Evolved Programmable Network Manager API
Evolved Programmable Network Manager API Documentation

PUT udfService/deleteUserTagDefinition

Resource Information

Rate Limiting?

Yes

Sorting?

No

Paging?

No

Filtering?

No

Response Formats

xml

json

User Group

NBI Write

HTTP Methods

PUT

An operation to delete User Defined Field definitions

Since Product Version: 2.2

Resource URL

/webacs/api/v1/op/udfService/deleteUserTagDefinition

Request Payload Parameters

Type Attribute Name Description

String[]

names

Response Parameters

Type Attribute Name Description

String

operation

The name of the operation.

UDFResult[]

results

Sample Payloads

Sample payloads are for information only. They are automatically generated and the values included may not be representative of actual valid data values.

Sample XML Request Payload

https://172.25.123.114/webacs/api/v1/op/udfService/deleteUserTagDefinition

<?xml version="1.0" ?>
<definitionDeleteCandidates>
  <names>
    <name>String value</name>
  </names>
</definitionDeleteCandidates>

Sample JSON Request Payload

https://172.25.123.114/webacs/api/v1/op/udfService/deleteUserTagDefinition.json

{
  "definitionDeleteCandidates" : {
    "names" : {
      "name" : "String value"
    }
  }
}

Sample XML Response Payload

https://172.25.123.114/webacs/api/v1/op/udfService/deleteUserTagDefinition

<?xml version="1.0" ?>
<mgmtResponse responseType="operation" requestUrl="../../../../pages/common/login.jsp.html" rootUrl="https://172.25.123.114/webacs/api/v1/op/">
  <udfOperationResult>
    <operation>String value</operation>
    <results>
      <result>
        <message>String value</message>
        <name>String value</name>
        <status>String value</status>
      </result>
    </results>
  </udfOperationResult>
</mgmtResponse>

Sample JSON Response Payload

https://172.25.123.114/webacs/api/v1/op/udfService/deleteUserTagDefinition.json

{
  "mgmtResponse" : {
    "@responseType" : "operation",
    "@requestUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/udfService\/deleteUserTagDefinition",
    "@rootUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/",
    "udfOperationResult" : {
      "operation" : "String value",
      "results" : {
        "result" : {
          "message" : "String value",
          "name" : "String value",
          "status" : "String value"
        }
      }
    }
  }
}