Lists active members of a team with cursor-based pagination and an optional `role` filter. Only available to active members of the team; callers with a pending invite receive `404`.
Path Parameters
- Type: stringidrequired
Team ID
Query Parameters
- Type: stringrole
Optional role filter — one of 'admin' or 'member'.
- Type: integer | stringpage
_size Pattern: ^-?(?:0|[1-9]\d*)$Format: int32Number of members per page (1-100, default 50)
- Type: stringcursor
Opaque cursor token from a previous response.
Responses
- application/json
- application/problem+json
- application/problem+json
- application/problem+json
- application/problem+json
Request Example for get/api/v1/teams/{id}/members
curl 'https://app.propstreet.com/api/v1/teams/{id}/members' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"data": [
{
"id": "string",
"user": {
"id": "string",
"email": null,
"phone": null,
"firstName": null,
"lastName": null
},
"role": "string",
"status": "string",
"jobTitle": null,
"joinedUtc": "2026-08-13T21:32:28.858Z"
}
],
"page": {
"nextCursor": null,
"pageSize": 1,
"hasMore": true
}
}