Teams
List User Teams
Returns the teams the authenticated customer belongs to, optionally filtered to admin-only teams.
GET
List User Teams
Documentation Index
Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
Use this file to discover all available pages before exploring further.
List User Teams
Returns a paginated list of teams the authenticated customer belongs to. PassisTeamAdmin=true to restrict the results to teams where the customer has admin rights — used across the portal to gate management interfaces. Pass isTeamAdmin=false to return all teams regardless of role.
A team is a group of customers within a coworking location that can share resources, bookings, and billing. The portal maps teams to companies
or departments that co-habit a space.
Authentication
Requires a valid customer bearer token. The response is automatically scoped to the authenticated customer — no additional filtering is needed.Query Parameters
true — return only teams where the customer is an administrator. false — return all teams the customer belongs to (admins and members).Filter results to a single team by its numeric ID. When omitted, returns all teams matching the
isTeamAdmin filter.Comma-separated dot-notated field paths to include in the response. When provided, only the
specified fields are returned — useful for reducing payload size. Example:
_shape=Records.Id,Records.Name,Records.TeamMembersCount1-based page number. Default:
1Records per page. Default:
25 · Maximum: 100Response field to sort by. Default:
Nameasc or desc. Default: ascResponse
Returns the standardApiListResult<Team> envelope (see API Overview for pagination fields). The Records array contains team objects.
Core Fields
Unique integer identifier for the team. Use this as
{teamId} in all team-scoped endpoints.Display name of the team.
UUID for the team — stable across renames and useful as a cache key.
String cast of
Id. Provided for environments that lose integer precision (e.g., JavaScript JSON.parse on 64-bit IDs).Profile Fields
Full-length team description. May contain HTML.
Short tagline shown in team cards and selectors.
When
true, the team profile is visible in the public member directory.Team website URL.
Space-separated tag string. Use
ProfileTagsList for array access.Pre-split array of tag strings derived from
ProfileTags.Location
Name of the coworking location this team belongs to.
URL of the coworking location’s home page.
Social Media
All social fields arestring | null. Provide a full URL (e.g., https://twitter.com/handle) unless stated otherwise.
| Field | Description |
|---|---|
Twitter | X / Twitter profile URL |
Facebook | Facebook page URL |
Linkedin | LinkedIn company page URL |
Instagram | Instagram profile URL |
Github | GitHub org or user URL |
Pinterest | Pinterest profile URL |
Skype | Skype username |
Telegram | Telegram handle |
Flickr | Flickr profile URL |
Vimeo | Vimeo channel URL |
Tumblr | Tumblr blog URL |
Blogger | Blogger profile URL |
Members
Total count of active members (admins + regular members).
Display names of all team admins — useful for a quick summary without loading full
Customer objects.Full
Coworker objects for admins only.Full
Coworker objects for non-admin members.Combined
Coworker objects for all members (admins + regular). Use this instead of merging the two arrays above.Billing & Configuration
Customer ID of the member who receives consolidated invoices, if
CreateSingleInvoiceForTeam is true.When
true, all team charges are rolled into a single invoice addressed to PayingMemberId.Maximum allowed members.
null means unlimited.Whether billing/contact details have been configured for this team.
Whether the team has a default membership plan assigned.
ID of the default membership plan assigned to new team members.
null if no default plan is set.Display name of the default membership plan.
When
true, new members added to the team are placed on hold until manually activated.When
true, the attendance dashboard is hidden for this team. Note the typo in the field name (Attendace) — it is preserved as-is in the API.Percentage discount applied to charges for team members.
Percentage discount applied to extra services for team members.
Percentage discount applied to membership plans for team members.
Percentage discount applied to time passes for team members.
When
true, the team has an associated community discussion group.Google Maps link for the team’s location.
Media
true if the team has an uploaded logo. Construct the logo URL as: https://[space].spaces.nexudus.com/api/public/teams/{Id}/logotrue if profile image 1 has been uploaded.true if profile image 2 has been uploaded.true if profile image 3 has been uploaded.Convenience flag —
true if any of the three profile images are present.Timestamps
All datetime fields are ISO 8601 strings.*On fields are in the location’s local timezone; *OnUtc fields are UTC.
Local datetime the team was created.
UTC datetime the team was created.
Local datetime of the last update.
UTC datetime of the last update.
Examples
Fetch admin teams (full payload)
Fetch all teams with a minimal field set
Use_shape to return only the fields your UI needs, reducing payload size significantly.
TypeScript Integration
The portal types this response asTeamList (from src/types/endpoints/TeamList.ts) and accesses it through the endpoints.teams helper:
Usage in Portal
TheisTeamAdmin flag drives a clear permission split across the portal:
| Context | isTeamAdmin | Source file |
|---|---|---|
| Team Dashboard team-switcher | true | src/views/user/dashboards/team/TeamDashboardPage.tsx |
| Team Profile editor | true | src/views/user/team/profile/TeamProfessionalProfilePage.tsx |
| Team Permissions management | true | src/views/user/team/permissions/TeamPermissionsPage.tsx |
| Team Attendance management | true | src/views/user/team/attendance/AttendanceManagementPage.tsx |
| Global navigation menu | true | src/states/useMenuItems.tsx |
| Team Attendance dashboard | false | src/views/user/team/attendance/AttendanceDashboardPage.tsx |
| Attendance management | true | src/views/user/team/attendance/AttendanceManagementPage.tsx |
| My Bookings team selector | false | src/views/user/activity/bookings/MyBookingsSection.tsx |
| Booking visitors | false | src/views/public/checkout/booking/components/BookingVisitors.tsx |
| Onboarding profile action | false | src/views/user/dashboards/personal/components/OnBoarding/components/CompleteProfileActionPanel.tsx |
| Team members section | false | src/views/user/team/members/TeamMembersSection.tsx |
Error Responses
The customer is not authenticated or the session has expired. Re-authenticate and retry.
A query parameter value is invalid — for example, a non-boolean
isTeamAdmin or an out-of-range _pageSize.Related Endpoints
| Method | Endpoint | Description |
|---|---|---|
GET | /api/public/teams/{teamId}/profile | Full profile for a single team |
PUT | /api/public/teams/{teamId}/profile | Update team profile (admin only) |
GET | /api/public/teams/{teamId}/kpi | Team KPI metrics |
GET | /api/public/teams/{teamId}/attendance | Team attendance data |
GET | /api/public/teams/{teamId}/metrics | Team performance metrics |
POST | /api/public/teams/{teamId}/members | Add members to a team |
DELETE | /api/public/teams/{teamId}/members/{coworkerId} | Remove a member from a team |
List User Teams