Hi Everyone there,
Could anybody help with below: I want to get, post and put from sugarCRM cloud API using python.
I can make get Contacts work, but the filter just doesn't work...
hdr = {
"Cache-Control": "no-cache",
"Content-Type": "application/json",
"OAuth-Token": session["access_token"],
}
pload = {"max_num": 1000}
resp = requests.get(urljoin(SITENAME, 'Contacts'), json=pload, headers=hdr)
Above code will give me all records for Contacts,
but I tried this pload
, and the filter doesn't work as I expected.
pload ={"max_num":1000, "filter": [{"name":{"$starts":"Olivia"}}]}