/api/space/managed-domain/managed-elements/{id}/ptps

The following operation is supported on this resource:

  • GET - Get Physical termination points of a managed element
GET /managed-elements/{id}/ptpsVersion 1

This API returns information about physical termination points (PTPs) for a managed element given a managed element ID.

Sample Usage

GET /managed-elements/{id}/ptps


  • Parameters:
    NameTypeURI TypeDescriptionRequired
    me-idintPathThe ID of the managed element from which to retrieve PTPs. Y
  • Sample Output XML:

    <ptps uri="/api/space/managed-domain/managed-elements/262148/ptps" size="2">
       <ptp href="/api/space/managed-domain/ptps/262144" uri="/api/space/managed-domain/managed-elements/262148/ptps/262144" key="262144">
          <name>lo0</name>
          <adminStatus>up</adminStatus>
          <operationStatus>up</operationStatus>
          <speed>0</speed>
          <mtu>0</mtu>
          <lacpBundle>lacpBundle</lacpBundle>
          <id>262148</id>
       </ptp>
       <ptp href="/api/space/managed-domain/ptps/262149" uri="/api/space/managed-domain/managed-elements/262148/ptps/262149" key="262149">
          <name>fe-0/0/0</name>
          <adminStatus>up</adminStatus>
          <operationStatus>up</operationStatus>
          <speed>100</speed>
          <mtu>1514</mtu>
          <lacpBundle>lacpBundle</lacpBundle>
          <id>262148</id>
       </ptp>
    </ptps>

  • Sample Output JSON:

    {
      "ptps":{
        "@uri": "/api/space/managed-domain/managed-elements/262148/ptps",
        "@size":"2",
        "ptp":[
          {
           "@href": "/api/space/managed-domain/ptps/262144",
           "@uri": "/api/space/managed-domain/managed-elements/262148/ptps/262144",
           "@key":"262144",
           "name":"lo0",
           "adminStatus":"up",
           "operationStatus":"up",
           "speed":0,
           "mtu":0,
           "lacpBundle":"lacpBundle",
           "id":262148
          },
          {
           "@href": "/api/space/managed-domain/ptps/262149",
           "@uri": "/api/space/managed-domain/managed-elements/262148/ptps/262149",
           "@key":"262149",
           "name":"fe-0/0/0",
           "adminStatus":"up",
           "operationStatus":"up",
           "speed":100,
           "mtu":1514,
           "lacpBundle":"lacpBundle",
           "id":262148
          }
        ]
      }
    }

  • Access Control

    The following capabilities are required to access this API: ViewInterfaces