Company Users
Fetches a list of users associated with the specified company. Supports pagination and optional retrieval of only user IDs.
The ID of the company for which to retrieve users.
98765The number of users to retrieve per page.
10The page number to retrieve.
1Flag to indicate if only user IDs should be returned.
falseA list of users or user IDs associated with the company.
A list of users or user IDs associated with the company.
Searches for users in a company based on a query string. Supports limiting the number of results returned.
The ID of the company in which to search for users.
385The search query to use for finding users.
JohnThe maximum number of users to return.
10A successful response with the list of users matching the search query.
A successful response with the list of users matching the search query.
Retrieves a list of users and their associated roles for a specified company.
The ID of the company to retrieve users and roles for.
385List of users and their roles
List of users and their roles
Updates the roles for a specific user within a company. If the user does not exist, they will be created and invited.
The ID of the company.
385The ID of the user. Required if user_email is not provided.
12345The email of the user. Required if user_id is not provided.
[email protected]Array of roles to assign to the user.
adminUpdated list of users and their roles
Updated list of users and their roles
Removes all roles from a specified user within a company.
The ID of the company.
385The ID of the user.
12345Updated list of users and their roles
Updated list of users and their roles
Last updated