Loading...
Started by Bill • Aug 19, 2025 4:56 PM
Total Replies
1
Participants
1
Activity
Quiet
Duration
4:56 PM
Thread starter
hs_working_hours and hs_out_of_office_hours. Would also like to return primary, and secondary team ids but running into issues. Is there a way to return this information with 1 request rather than calling the users endpoint, and the users search endpoint separately and joining the data? Below is works but does not return the team, or role ids.params = {
"limit": limit,
"properties": [
"hs_timezone",
"hs_working_hours",
"hs_out_of_office_hours",
"primary_team_id",
"secondary_team_ids",
"role_id",
"role_ids",
],
# "filterGroups": filter_groups,
# **({"after": after} if after else {}),
}
url = "https://api.hubapi.com/crm/v3/objects/users/search"
r = requests.post(url, headers=headers, json=params)1 messages in thread