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_4V815bRpPLCKKQnvA2yESr5Q8Px",
"type": "users",
"attributes": {
"first_name": "Arron",
"last_name": "Flatley",
"email": "[email protected]",
"mfa_enabled": false,
"created_at": "2025-10-31T00:00:00+00:00",
"updated_at": "2026-11-15T00:00:00+00:00",
"last_login_at": null,
"role": {
"id": "role_0W0Q8EJMrViyEkP5KBzzHNP4v48",
"name": "billing"
}
}
},
{
"id": "user_YLNGPAYPAotoo2mZRv59SGLKQW7n",
"type": "users",
"attributes": {
"first_name": "Kathryne",
"last_name": "Purdy",
"email": "[email protected]",
"mfa_enabled": false,
"created_at": "2025-05-31T00:00:00+00:00",
"updated_at": "2026-10-22T00:00:00+00:00",
"last_login_at": null,
"role": {
"id": "role_o41aor9xVMSzmNM5eQN4TkJbv42",
"name": "owner"
}
}
},
{
"id": "user_LxZl44k6rJtLBAYg67L7F5o3AkJP",
"type": "users",
"attributes": {
"first_name": "Myles",
"last_name": "Lesch",
"email": "[email protected]",
"mfa_enabled": false,
"created_at": "2025-02-22T00:00:00+00:00",
"updated_at": "2026-09-20T00:00:00+00:00",
"last_login_at": "2025-08-05T00:00:00+00:00",
"role": {
"id": "role_o41aor9xVMSzmNM5eQN4TkJbv42",
"name": "owner"
}
}
}
],
"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_4V815bRpPLCKKQnvA2yESr5Q8Px",
"type": "users",
"attributes": {
"first_name": "Arron",
"last_name": "Flatley",
"email": "[email protected]",
"mfa_enabled": false,
"created_at": "2025-10-31T00:00:00+00:00",
"updated_at": "2026-11-15T00:00:00+00:00",
"last_login_at": null,
"role": {
"id": "role_0W0Q8EJMrViyEkP5KBzzHNP4v48",
"name": "billing"
}
}
},
{
"id": "user_YLNGPAYPAotoo2mZRv59SGLKQW7n",
"type": "users",
"attributes": {
"first_name": "Kathryne",
"last_name": "Purdy",
"email": "[email protected]",
"mfa_enabled": false,
"created_at": "2025-05-31T00:00:00+00:00",
"updated_at": "2026-10-22T00:00:00+00:00",
"last_login_at": null,
"role": {
"id": "role_o41aor9xVMSzmNM5eQN4TkJbv42",
"name": "owner"
}
}
},
{
"id": "user_LxZl44k6rJtLBAYg67L7F5o3AkJP",
"type": "users",
"attributes": {
"first_name": "Myles",
"last_name": "Lesch",
"email": "[email protected]",
"mfa_enabled": false,
"created_at": "2025-02-22T00:00:00+00:00",
"updated_at": "2026-09-20T00:00:00+00:00",
"last_login_at": "2025-08-05T00:00:00+00:00",
"role": {
"id": "role_o41aor9xVMSzmNM5eQN4TkJbv42",
"name": "owner"
}
}
}
],
"meta": {}
}Number of items to return per page
x >= 1Page number to return (starts at 1)
x >= 1Success
Show child attributes
Was this page helpful?