I am using the following filters in Postman to make a POST request in a Web API but I am unable to make a simple POST request in Python with the requests library.
<
I think, you can use requests library as follows:
import requests import json payload = {'field':'T_Subcategory','operator':'neq','value':'Temporary Degradation'} url = requests.post("http://10.61.202.98:8081/T/a/api/rows/cat/ect/tickets",data=json.dumps(payload))