HI, Even though I am not able to get 200 success for login through RestAPI below is my code
```
import requests
import base64
import json
import time
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
def main():
try:
url = ("https://<ip>:<port>/web_api/login")
headers={
'content_type': 'application/json'
}
response = requests.post(url, headers=headers, verify=False, data={"user":"test","password":"test@123"})
print(response)
except Exception as e:
print(e)
if __name__ == '__main__':
main()
```
Getting 400 Request error.
NOTE: API is Enabled and published the change as well.