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...
"OAuth-Token": session["access_token"],
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...
"OAuth-Token": session["access_token"],
I would recommend to use first_name or last name
{
"filter": [
{
"first_name": {
"$starts": "Charlotte"
}
}
],
"max_num": 10,
"fields": [
"name",
"email"
]
}Rodrigo Manara
Sr. Developer

Hi Rodrigo,
Yeah, you're right, when I tried filter by first_name, it worked; but when filter by name, it did not work...
Can you share the reason?
Thank you very much!
Hi Rodrigo,
Yeah, you're right, when I tried filter by first_name, it worked; but when filter by name, it did not work...
Can you share the reason?
Thank you very much!
Name is a combination of 2 vars (first name and last name together ). I normally use first name and last name as you can ensure you get the correct data as well.
Rodrigo Manara
Sr. Developer
