List all teammates

GET https://api.tamio.com/v2/teammates/list

Returns a paginated list of teammates. Supports filtering by date range and free-text search across names, emails, and roles.

Query Parameters

page integer*

Page number for pagination.

per_page integer*

Number of teammates per page.

order string

Sort direction.

ascdesc
from string

Start date filter (ISO string or Unix timestamp).

to string

End date filter (ISO string or Unix timestamp).

filter string

Free-text search across teammate names, emails, or roles.

Responses

200 Paginated list of teammates

Paginated list of teammates

status integer
total_results integer
teammates array of Teammate
400 Validation or business-logic error
401 Missing or invalid API key
/teammates/list
1const response = await fetch("https://api.tamio.com/v2/teammates/list", {
2 headers: {
3 "Authorization": "Bearer YOUR_API_KEY",
4 "Accept": "application/json"
5 }
6});
7const data = await response.json();
Responses
{
  "status": 200,
  "total_results": 5,
  "teammates": []
}