For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
PlaygroundDiscordStatusDashboardSign Up >
DocumentationSDK ReferenceGraphiti
DocumentationSDK ReferenceGraphiti
  • SDK Reference
      • POSTAdd User
      • GETGet Users
      • GETGet User
      • DELDelete User
      • PATCHUpdate User
      • GETGet User Node
      • GETGet User Sessions
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceUser

Get Users

GET
https://api.getzep.com/api/v2/users-ordered
GET
/api/v2/users-ordered
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.user.list_ordered(
7 page_number=1,
8 page_size=1,
9 search="search",
10 order_by="order_by",
11 asc=True,
12)
1{
2 "row_count": 1,
3 "total_count": 1,
4 "users": [
5 {
6 "created_at": "string",
7 "deleted_at": "string",
8 "email": "string",
9 "fact_rating_instruction": {
10 "examples": {
11 "high": "string",
12 "low": "string",
13 "medium": "string"
14 },
15 "instruction": "string"
16 },
17 "first_name": "string",
18 "id": 1,
19 "last_name": "string",
20 "metadata": {},
21 "project_uuid": "string",
22 "session_count": 1,
23 "updated_at": "string",
24 "user_id": "string",
25 "uuid": "string"
26 }
27 ]
28}
Returns all users.
Was this page helpful?
Previous

Get User

Next
Built with

Query parameters

pageNumberintegerOptional
Page number for pagination, starting from 1
pageSizeintegerOptional
Number of users to retrieve per page

Response

Successfully retrieved list of users
row_countinteger
total_countinteger
userslist of objects

Errors

400
Bad Request Error
500
Internal Server Error