post https://platform.{env}.simpplr.com/v1/identity/people/list
You can filter by standard fields (like department, division, title) or custom fields (ending with __c, like team__c).
Example request payload showing filter applied on a standard field (department) and a custom field (team__c): The query finds users in one of the two Marketing department teams.
{
"pageSize": 10,
"department": ["Marketing"],
"team__c": ["Branding Brainiacs", "Ad-Vengers"]
}