Authorizations
Query Parameters
Number of items to return per page
Required range:
x >= 1
Page number to return (starts at 1)
Required range:
x >= 1
Response
200 - application/vnd.api+json
Success
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.teams_members.list(page_size=20, page_number=1)
while res is not None:
# Handle items
res = res.next()
{
"data": [
{
"id": "user_7WJG0pvKZbHlX8reeJ2LTEo8mN7",
"type": "users",
"attributes": {
"first_name": "Jefferson",
"last_name": "Fadel",
"email": "cora.streich@grimes.test",
"mfa_enabled": false,
"created_at": "2025-05-22T00:00:00+00:00",
"updated_at": "2026-05-20T00:00:00+00:00",
"last_login_at": null,
"role": {
"id": "role_wAE1EEyB3VuRvZWkAK0ZczbVyjG",
"name": "owner"
}
}
},
{
"id": "user_LXYNaEJnK1fL3YX1k63luNAQw4y",
"type": "users",
"attributes": {
"first_name": "Marcell",
"last_name": "Hayes",
"email": "irvin_gleichner@conroy.example",
"mfa_enabled": false,
"created_at": "2025-04-06T00:00:00+00:00",
"updated_at": "2026-06-10T00:00:00+00:00",
"last_login_at": null,
"role": {
"id": "role_wAE1EEyB3VuRvZWkAK0ZczbVyjG",
"name": "owner"
}
}
},
{
"id": "user_LVjjma4pvmULB9A0vK9Zf6kwb3L",
"type": "users",
"attributes": {
"first_name": "Ted",
"last_name": "Vandervort",
"email": "lenard@stehr.test",
"mfa_enabled": false,
"created_at": "2024-11-27T00:00:00+00:00",
"updated_at": "2026-07-15T00:00:00+00:00",
"last_login_at": "2025-01-20T00:00:00+00:00",
"role": {
"id": "role_RYXj8v8JxaUAP3P20g5gFR80PgmZ",
"name": "billing"
}
}
}
],
"meta": {}
}
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.teams_members.list(page_size=20, page_number=1)
while res is not None:
# Handle items
res = res.next()
{
"data": [
{
"id": "user_7WJG0pvKZbHlX8reeJ2LTEo8mN7",
"type": "users",
"attributes": {
"first_name": "Jefferson",
"last_name": "Fadel",
"email": "cora.streich@grimes.test",
"mfa_enabled": false,
"created_at": "2025-05-22T00:00:00+00:00",
"updated_at": "2026-05-20T00:00:00+00:00",
"last_login_at": null,
"role": {
"id": "role_wAE1EEyB3VuRvZWkAK0ZczbVyjG",
"name": "owner"
}
}
},
{
"id": "user_LXYNaEJnK1fL3YX1k63luNAQw4y",
"type": "users",
"attributes": {
"first_name": "Marcell",
"last_name": "Hayes",
"email": "irvin_gleichner@conroy.example",
"mfa_enabled": false,
"created_at": "2025-04-06T00:00:00+00:00",
"updated_at": "2026-06-10T00:00:00+00:00",
"last_login_at": null,
"role": {
"id": "role_wAE1EEyB3VuRvZWkAK0ZczbVyjG",
"name": "owner"
}
}
},
{
"id": "user_LVjjma4pvmULB9A0vK9Zf6kwb3L",
"type": "users",
"attributes": {
"first_name": "Ted",
"last_name": "Vandervort",
"email": "lenard@stehr.test",
"mfa_enabled": false,
"created_at": "2024-11-27T00:00:00+00:00",
"updated_at": "2026-07-15T00:00:00+00:00",
"last_login_at": "2025-01-20T00:00:00+00:00",
"role": {
"id": "role_RYXj8v8JxaUAP3P20g5gFR80PgmZ",
"name": "billing"
}
}
}
],
"meta": {}
}
Number of items to return per page
x >= 1
Page number to return (starts at 1)
x >= 1
Success
Show child attributes
Was this page helpful?