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
Copy file name to clipboardExpand all lines: docs/UsersApi.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -212,7 +212,7 @@ with kandji.ApiClient(configuration) as api_client:
212
212
id='69c009ca-1f78-4bdf-bb93-08d6d39041db'# str | Search for a user matching the provided UUID value. (optional)
213
213
integration_id ='f7461096-4ef9-43aa-88e9-ca1967ba0b38'# str | Search for a integration matching the provided UUID value. (optional)
214
214
archived ='false'# str | Return only users that are either archived (true) or not archived (false). Archived users are users that appear in the Kandji Users module under the Archived tab. (optional)
215
-
cursor ='cursor_example'# str | Cursor for the next or previous page or results. Can also store the URL from the next and previous fields in the response. (optional)
215
+
cursor ='cursor_example'# str | Cursor for the next or previous page of results. Can also store the URL in the next and previous fields in the response. (optional)
216
216
217
217
try:
218
218
# List Users
@@ -234,7 +234,7 @@ Name | Type | Description | Notes
234
234
**id** | **str**| Search for a user matching the provided UUID value. | [optional]
235
235
**integration_id** | **str**| Search for a integration matching the provided UUID value. | [optional]
236
236
**archived** | **str**| Return only users that are either archived (true) or not archived (false). Archived users are users that appear in the Kandji Users module under the Archived tab. | [optional]
237
-
**cursor** | **str**| Cursor for the next or previous page or results. Can also store the URL from the next and previous fields in the response. | [optional]
237
+
**cursor** | **str**| Cursor for the next or previous page of results. Can also store the URL in the next and previous fields in the response. | [optional]
Copy file name to clipboardExpand all lines: kandji/api/users_api.py
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -573,7 +573,7 @@ def list_users(
573
573
id: Annotated[Optional[StrictStr], Field(description="Search for a user matching the provided UUID value.")] =None,
574
574
integration_id: Annotated[Optional[StrictStr], Field(description="Search for a integration matching the provided UUID value.")] =None,
575
575
archived: Annotated[Optional[StrictStr], Field(description="Return only users that are either archived (true) or not archived (false). Archived users are users that appear in the Kandji Users module under the Archived tab.")] =None,
576
-
cursor: Annotated[Optional[StrictStr], Field(description="Cursor for the next or previous page or results. Can also store the URL from the next and previous fields in the response.")] =None,
576
+
cursor: Annotated[Optional[StrictStr], Field(description="Cursor for the next or previous page of results. Can also store the URL in the next and previous fields in the response.")] =None,
577
577
_request_timeout: Union[
578
578
None,
579
579
Annotated[StrictFloat, Field(gt=0)],
@@ -599,7 +599,7 @@ def list_users(
599
599
:type integration_id: str
600
600
:param archived: Return only users that are either archived (true) or not archived (false). Archived users are users that appear in the Kandji Users module under the Archived tab.
601
601
:type archived: str
602
-
:param cursor: Cursor for the next or previous page or results. Can also store the URL from the next and previous fields in the response.
602
+
:param cursor: Cursor for the next or previous page of results. Can also store the URL in the next and previous fields in the response.
603
603
:type cursor: str
604
604
:param _request_timeout: timeout setting for this request. If one
id: Annotated[Optional[StrictStr], Field(description="Search for a user matching the provided UUID value.")] =None,
657
657
integration_id: Annotated[Optional[StrictStr], Field(description="Search for a integration matching the provided UUID value.")] =None,
658
658
archived: Annotated[Optional[StrictStr], Field(description="Return only users that are either archived (true) or not archived (false). Archived users are users that appear in the Kandji Users module under the Archived tab.")] =None,
659
-
cursor: Annotated[Optional[StrictStr], Field(description="Cursor for the next or previous page or results. Can also store the URL from the next and previous fields in the response.")] =None,
659
+
cursor: Annotated[Optional[StrictStr], Field(description="Cursor for the next or previous page of results. Can also store the URL in the next and previous fields in the response.")] =None,
:param archived: Return only users that are either archived (true) or not archived (false). Archived users are users that appear in the Kandji Users module under the Archived tab.
684
684
:type archived: str
685
-
:param cursor: Cursor for the next or previous page or results. Can also store the URL from the next and previous fields in the response.
685
+
:param cursor: Cursor for the next or previous page of results. Can also store the URL in the next and previous fields in the response.
686
686
:type cursor: str
687
687
:param _request_timeout: timeout setting for this request. If one
id: Annotated[Optional[StrictStr], Field(description="Search for a user matching the provided UUID value.")] =None,
740
740
integration_id: Annotated[Optional[StrictStr], Field(description="Search for a integration matching the provided UUID value.")] =None,
741
741
archived: Annotated[Optional[StrictStr], Field(description="Return only users that are either archived (true) or not archived (false). Archived users are users that appear in the Kandji Users module under the Archived tab.")] =None,
742
-
cursor: Annotated[Optional[StrictStr], Field(description="Cursor for the next or previous page or results. Can also store the URL from the next and previous fields in the response.")] =None,
742
+
cursor: Annotated[Optional[StrictStr], Field(description="Cursor for the next or previous page of results. Can also store the URL in the next and previous fields in the response.")] =None,
:param archived: Return only users that are either archived (true) or not archived (false). Archived users are users that appear in the Kandji Users module under the Archived tab.
767
767
:type archived: str
768
-
:param cursor: Cursor for the next or previous page or results. Can also store the URL from the next and previous fields in the response.
768
+
:param cursor: Cursor for the next or previous page of results. Can also store the URL in the next and previous fields in the response.
769
769
:type cursor: str
770
770
:param _request_timeout: timeout setting for this request. If one
0 commit comments