Skip to content

List users

GET
/users
curl --request GET \
--url 'https://shoehorn.example.com/api/v1/users?limit=50'

Returns all users in the tenant directory.

limit
integer
default: 50 <= 200
cursor
string
search

Search by name or email

string

User directory

Media type application/json
object
users
Array<object>
object
id
string format: uuid
email
string
name
string
picture
string
last_login
string format: date-time
created_at
string format: date-time
Example generated
{
"users": [
{
"id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"email": "example",
"name": "example",
"picture": "example",
"last_login": "2026-04-15T12:00:00Z",
"created_at": "2026-04-15T12:00:00Z"
}
]
}