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

GET aaa/tacacsPlusServer

Resource Information

Rate Limiting?

Yes

Sorting?

No

Paging?

No

Filtering?

No

Response Formats

xml

json

User Group

NBI Credential

HTTP Methods

GET

Read all TACACS+ servers

Since Product Version: 3.0

Resource URL

/webacs/api/v1/op/aaa/tacacsPlusServer

Response Parameters

Type Attribute Name Description

boolean

operationSucceeded

A flag of a successful operation

String

resultMessage

Description of the operation result

TACACSPlusServer[]

servers

List of all TACACS+ servers in the system

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 Response Payload

https://172.25.123.114/webacs/api/v1/op/aaa/tacacsPlusServer

<?xml version="1.0" ?>
<mgmtResponse responseType="operation" requestUrl="../../../../pages/common/login.jsp.html" rootUrl="https://172.25.123.114/webacs/api/v1/op/">
  <listServerResult>
    <operationSucceeded>true</operationSucceeded>
    <resultMessage>String value</resultMessage>
    <servers>
      <server>
        <authenticationType>PAP</authenticationType>
        <localInterfaceIp>
          <address>192.168.115.243</address>
        </localInterfaceIp>
        <numberOfTries>1</numberOfTries>
        <port>1</port>
        <retransmitTimeout>1</retransmitTimeout>
        <secretKey>String value</secretKey>
        <secretKeyType>ASCII</secretKeyType>
        <serverIp>
          <address>192.168.115.243</address>
        </serverIp>
      </server>
    </servers>
  </listServerResult>
</mgmtResponse>

Sample JSON Response Payload

https://172.25.123.114/webacs/api/v1/op/aaa/tacacsPlusServer.json

{
  "mgmtResponse" : {
    "@responseType" : "operation",
    "@requestUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/aaa\/tacacsPlusServer",
    "@rootUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/",
    "listServerResult" : {
      "operationSucceeded" : true,
      "resultMessage" : "String value",
      "servers" : {
        "server" : {
          "authenticationType" : "PAP",
          "localInterfaceIp" : {
            "address" : "192.168.115.243"
          },
          "numberOfTries" : 1,
          "port" : 1,
          "retransmitTimeout" : 1,
          "secretKey" : "String value",
          "secretKeyType" : "ASCII",
          "serverIp" : {
            "address" : "192.168.115.243"
          }
        }
      }
    }
  }
}