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
* **sort_key**: [`SortKeys`][agents-sort-keys] - Values on which the response will be sorted. Defaults to agent name.
56
57
* **agent_healthy**: `bool | None` - Optionally retrieve agents with this health status. Agents that have no health issue types are considered healthy.
57
58
* **agent_health_issue_types**: `List[str] | str` - Optionally retrieve agents that have (at least) any of the given issue type(s). Health issue types include the following: `NOT_CONNECTING`, `NOT_SENDING_SECURITY_EVENTS`, `SECURITY_INGEST_REJECTED`, `MISSING_MACOS_PERMISSION_FULL_DISK_ACCESS`, `MISSING_MACOS_PERMISSION_ACCESSIBILITY`.
59
+
* **user_id**: `str` - Optionally retrieve only agents associated with this user ID.
58
60
59
61
**Returns**: An [`AgentsPage`][agentspage-model] object.
description="A globally unique ID for this user.",
77
84
)
78
85
legacy_user_id: Optional[str] =Field(
86
+
None,
79
87
alias="legacyUserId",
80
88
description='The user ID to use for older console-based APIs that require a user Id.\r\nIf your endpoint domain starts with "console" instead of "api", use this Id for endpoints that require a userId.',
81
89
)
82
90
org_id: Optional[str] =Field(
91
+
None,
83
92
alias="orgId",
84
93
description="An ID for the Code42 organization of the user owning this device.",
85
94
)
86
95
legacy_org_id: Optional[str] =Field(
96
+
None,
87
97
alias="legacyOrgId",
88
98
description='The org ID to use for older console-based APIs that require an org Id.\r\nIf your endpoint domain starts with "console" instead of "api", use this Id for endpoints that require an orgId.',
0 commit comments