For each of these example requests, it is assumed that the token is sent in a header, e.g.: Authorization: Bearer d4f925b0d9a44a85f48038725d33054abddd1b6b
For readability, these examples show the filter parameter unencoded. This should be URL encoded in your requests, so that userName sw "a"
becomes userName+sw+%22a%22
/scim/v2/users?sortBy=displayName&count=100
/scim/v2/users?sortBy=displayName&count=100&startIndex=100
/scim/v2/users?filter=userType eq "collaborator"
/scim/v2/users?filter=displayName co "Alice"
See notes regarding handling of names.
/scim/v2/users?attributes=emails&filter=active eq false
First get the Workspace IDs:
/scim/v2/groups?attributes=id&filter=meta.trelloType eq "Team" and (name eq "Sales" or name eq "Marketing")
/scim/v2/users?filter=groups.value eq "59248c4dae276a021cb296d" or groups.value eq "a286075043d42dcdce8d6668"
/scim/v2/users?filter=locale ne "en-US"
/scim/v2/groups?filter=meta.trelloType eq "Team"
Group responses for Workspaces include both Boards and Users in the members attribute.
/scim/v2/groups?filter=name eq "Sales"
/scim/v2/groups?filter=meta.trelloType eq "Board" and meta.created gt "2017-01-01"
See Update a User
Rate this page: