api-reference
Users API

Users API

The Users API allows you to retrieve metadata about the members within your tenant organization.

List Users

GET /v1/users

Returns a paginated list of users attached to your workspace.

Query Parameters

  • q (string, optional): Search by name or email.
  • limit (number, optional): Max records to return. Default is 50.

Example Request

curl "https://api.kortexa.net/v1/users?limit=10" \
  -H "Authorization: Bearer ktx_live_123456789"

Example Response

{
  "data": [
    {
      "id": "usr_abc123",
      "name": "Jane Doe",
      "email": "jane@example.com",
      "createdAt": "2024-01-01T12:00:00Z"
    }
  ]
}