PageResponse_MemberDto_
A single page of results. nextCursor is an opaque token to pass back as ?cursor= to fetch the following page; null means there are no more results.
items object[]required
Array [
idstring
The member's user id
Example:
7Hb2Kp9QvL3mNx0R8tZ4rolestring
Network membership role
Possible values: [admin, viewer]
Example:
adminstatusstring
Membership status
Possible values: [active, pending, suspended]
Example:
activeinvited_atdate-timenullable
When the member was invited to the network, if applicable
Example:
2026-01-15T09:30:00Zaccepted_atdate-timenullable
When the member accepted their invitation, if applicable
Example:
2026-01-15T09:30:00Zcreated_atdate-time
When the membership was created
Example:
2026-01-15T09:30:00Zupdated_atdate-time
When the membership was last updated
Example:
2026-01-15T09:30:00Zuser objectnullable
The member's user profile; present only when ?expand=user was requested.
idstring
Unique identifier of the user
Example:
7Hb2Kp9QvL3mNx0R8tZ4emailstring
Email address of the user
Example:
ops@example.comdisplay_namestringnullable
Optional display name of the user
Example:
Jane Doestatusstring
Account status
Possible values: [active, inactive, suspended]
]
next_cursorstringnullable
PageResponse_MemberDto_
{
"items": [
{
"id": "7Hb2Kp9QvL3mNx0R8tZ4",
"role": "admin",
"status": "active",
"invited_at": "2026-01-15T09:30:00Z",
"accepted_at": "2026-01-15T09:30:00Z",
"created_at": "2026-01-15T09:30:00Z",
"updated_at": "2026-01-15T09:30:00Z",
"user": {
"id": "7Hb2Kp9QvL3mNx0R8tZ4",
"email": "ops@example.com",
"display_name": "Jane Doe",
"status": "active"
}
}
],
"next_cursor": "string"
}