read_users
Retrieve and manage user accounts and permissions in CData Sync, including listing users, viewing details, and filtering by roles or status.
Instructions
Access CData Sync user accounts and their permissions.
ROLES:
cdata_admin: Full administrative access
cdata_standard: Run existing jobs
cdata_job_creator: Create and modify jobs
cdata_support: Operate jobs (start/stop)
RETURNS:
list: Array of user objects
get: Detailed user information
count: Total number of users
COMMON ERRORS:
"User not found" - Check username spelling
"Access denied" - Admin role required
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | No | Operation to perform | list |
| user | No | Username for 'get' action. Case-sensitive. | |
| filter | No | OData filter expression. SUPPORTED: eq, ne, gt, lt, ge, le, and, or Example: "Active eq 'true' and Roles eq 'cdata_admin'" | |
| select | No | Properties to include (e.g., 'User,Roles,Active') | |
| top | No | Maximum results | |
| skip | No | Results to skip | |
| workspaceId | No | Workspace ID to use for this operation. Overrides the default workspace. Use 'default' for the default workspace or a UUID for specific workspaces. |