You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
For regression testing using pyATS (or other testing tools), it might be useful to get the HTTP status code in successful API requests (e.g. 201 when creating a resource like an endpoint). In case of an error (ApiError exception) the fail status code is already implemented in the status_code property.
Describe the solution you'd like
Add the following properties to the RestResponse class:
status_code
The field status might not be needed, because I doubt the ISE will add any message in the body for success requests.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
For regression testing using pyATS (or other testing tools), it might be useful to get the HTTP status code in successful API requests (e.g. 201 when creating a resource like an endpoint). In case of an error (
ApiError
exception) the fail status code is already implemented in thestatus_code
property.Describe the solution you'd like
Add the following properties to the
RestResponse
class:status_code
The field
status
might not be needed, because I doubt the ISE will add any message in the body for success requests.The text was updated successfully, but these errors were encountered: