You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SystemLink CLI provides comprehensive user management capabilities for administering users in your SystemLink environment through the User Service API.
334
+
335
+
### List users
336
+
337
+
```bash
338
+
# List all users (table format, default)
339
+
slcli user list
340
+
341
+
# JSON format for programmatic use
342
+
slcli user list --format json
343
+
344
+
# Filter users with Dynamic LINQ queries
345
+
slcli user list --filter 'firstName.StartsWith("John") && status == "active"'
346
+
347
+
# Sort by different fields
348
+
slcli user list --sortby firstName --order descending
349
+
350
+
# Limit number of results
351
+
slcli user list --take 25
352
+
```
353
+
354
+
### Get user details
355
+
356
+
```bash
357
+
# Get user details by ID (table format)
358
+
slcli user get --id <user_id>
359
+
360
+
# Get user details by email (table format)
361
+
slcli user get --email "john.doe@example.com"
362
+
363
+
# JSON output
364
+
slcli user get --id <user_id> --format json
365
+
slcli user get --email "jane.smith@example.com" --format json
366
+
```
367
+
368
+
### Create a new user
369
+
370
+
```bash
371
+
# Create a basic user
372
+
slcli user create --first-name "John" --last-name "Doe" --email "john.doe@example.com"
0 commit comments