- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
11-03-2016 01:33 PM
Why am I not getting response when using pan.xapi vs panxapi.py?
from python interpretor:
api_sess = pan.xapi.PanXapi(hostname="10.209.32.33",api_username="myusername", api_password="mypassword",api_key='mykey')
api_sess..show(xpath = "/config/devices/entry/deviceconfig/system/hostname")
*returns no ouptput however using panxapi.py I expected results.
python panxapi.py -h 10.209.32.33 -l myusername -xr -s "/config/devices/entry/deviceconfig/system/hostname"
Password:
show: success
<hostname>myhostname</hostname>
11-04-2016 06:12 PM
Hi,
1) no need to specify api_username and api_password when api_key is specified
2) should handle exceptions
3) to see request XML response use for example:
https://github.com/kevinsteves/pan-python/blob/master/doc/pan.xapi.rst#xml_result
03-15-2020 11:56 AM
@ksteves1 Thank you. It an old post, but I was stuck and this response helped me fix the script I was working on. "xml_result()" was the bit I was missing.
pan.xapi is amazing and does exactly what I need.
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!