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
user_id ="user_id_example"# str | The ID of the user.
391
+
user_id ="00000000-0000-0000-0000-000000000000"# str | The ID of the user.
392
392
393
393
# example passing only required values which don't have defaults set
394
394
try:
@@ -459,7 +459,7 @@ with ApiClient(configuration) as api_client:
459
459
sort ="name"# str | User attribute to order results by. Sort order is ascending by default. Sort order is descending if the field is prefixed by a negative sign, for example `sort=-name`. Options: `name`, `modified_at`, `user_count`. (optional) if omitted the server will use the default value of "name"
460
460
sort_dir = QuerySortOrder("desc") # QuerySortOrder | Direction of sort. Options: `asc`, `desc`. (optional)
461
461
filter="filter_example"# str | Filter all users by the given string. Defaults to no filtering. (optional)
462
-
filter_status ="filter[status]_example"# str | Filter on status attribute. Comma separated list, with possible values `Active`, `Pending`, and `Disabled`. Defaults to no filtering. (optional)
462
+
filter_status ="Active"# str | Filter on status attribute. Comma separated list, with possible values `Active`, `Pending`, and `Disabled`. Defaults to no filtering. (optional)
463
463
464
464
# example passing only required values which don't have defaults set
0 commit comments