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 Threads
      • GETWarm User Cache
      • GETList User Instructions
      • POSTAdd User Instructions
      • DELDelete User Instructions
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 "disable_default_ontology": true,
9 "email": "string",
10 "first_name": "string",
11 "id": 1,
12 "last_name": "string",
13 "metadata": {},
14 "project_uuid": "string",
15 "session_count": 1,
16 "updated_at": "string",
17 "user_id": "string",
18 "uuid": "string"
19 }
20 ]
21}
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
searchstringOptional

Search term for filtering users by user_id, name, or email

order_bystringOptional

Column to sort by (created_at, user_id, email)

ascbooleanOptional
Sort in ascending order

Response

Successfully retrieved list of users
row_countinteger
total_countinteger
userslist of objects

Errors

400
Bad Request Error
500
Internal Server Error