hanspgs
6 years agoVisitor
rest api to query swagger with Python
Hi,
I want to query swagger using Python with the request package.
Simple queries succeed without any issue:
assets_url="http://dev.company.com/asset-service-rest-api/assets?makeName=XXX&modelName=YYY"
assets_field=requests.get(assets_url,headers=headers_auth)
This returns a large json with many fields of which I only need 2.
Can I limit the fields returned in the json?
Some implementations of REST allow to specify a list of fields to be retrieved.
Is there some way to use boolean logic so that queries like makeName = XXX and (modelName = YYY or modelName=ZZZ) can be done?
Regards Hans