---
title: "Get users of the client account."
method: GET
path: "/useraccounts"
tags: ["users"]
---

# Get users of the client account.

`GET /useraccounts`

List all the users of the client according to the (optionally) specified filters.

## Query parameters

- `id` string
- `username` string
- `email` string
- `firstName` string
- `lastName` string
- `page` number
- `perPage` number
- `clientAccountId` number

## Response `200`

The set of user accounts that match the filter criteria

- object
  - `paging` PagingType
    - `total` number — total results
    - `page` number — The number of the current page
    - `perPage` number — Number of results per page
    - `previous` string — Link to previous page (if exists)
    - `next` string — Link to next page (if exists)
    - `first` string — Link to first page
    - `last` string — Link to last page
  - `items` UserAccountType[] — Array of the returned applications
    - `username` string — The username of the user account
    - `email` string — The email of the user
    - `firstName` string — The first name of the user
    - `lastName` string — The last name of the user
    - `contactNumber` string — The contact number for the user
    - `testUserId` string — Optional user ID to be used for testing
    - `id` string, required — System wide unique identifier of the entity
    - `apikey` string — The API key associated with this user. Currently API key is only returned when for the currently logged in user account.
    - `lastlogin` string, date-time — ISODateTimeType, ISO8601 date format with optional time part. For instance, 1970-01-18T09:19:41.204+0000
    - `lastip` string — Last access IP using this user account

## Other responses

- `400` — Malformed request
- `default` — Unexpected error

---

[API](https://skmtc.net/gameanalytics/apis/datatiger-management-api.md) · [All operations](https://skmtc.net/gameanalytics/apis/datatiger-management-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gameanalytics/datatiger-management-api/revisions/20a4f732a0b7/schema)
