Okta Identity Governance
/Management APIs
/- Retrieve the unassigned users
Create a resource collection
List all resource collections
Retrieve a resource collection
Replace a resource collection
Delete a collection
List all collection resources
Add the resources to a collection
Delete a collection resource
Retrieve a collection resource
Replace a collection resource
List all assignments for a collection
Assign a collection to principals
Update a principal assignment
Delete a principal assignment
List all assignments for all collections
Retrieve the unassigned u...
Retrieves unassigned users for a collection based on the provided filter
A filter expression that filters users based on firstName, lastName, or email properties. The sw operator is supported for these properties.
Note: Query parameter percent encoding is required. See Percent-encoding.
Examples:
Search for unassigned users with a first name that begins with "John"
filter=firstName sw "John"Search for unassigned users with a first name, last name, or email that begins with "John"
filter=firstName sw "John" OR lastName sw "John" OR email sw "John"GET
curl -i -X GET \
'https://okta-subdomain.pixtulate.com/governance/api/v1/collections/{collectionId}/catalog/users?filter=firstName%20sw%20%22John%22'