Authentication
This endpoint requires OAuth2 authentication. Include a valid bearer token in the Authorization header.
The authenticated user must be a full unrestricted administrator or have the Team-List role.
Query Parameters
The page number to retrieve.
The number of records per page.
The property name to sort results by (e.g. Name, CreatedOn).
Sort direction. 1 for ascending, -1 for descending.
Filters
Filter by team description.
Team_TunnelPrivateGroupId
Filter by tunnel private group ID.
Team_CreateSingleInvoiceForTeam
Filter by create a single invoice for the team.
Filter by use special prices.
Filter by Paying Member Id.
Team_PayingMember_FullName
Filter by paying member full name.
Team_PayingMember_CoworkerType
Filter by paying member coworker type.
Team_PayingMember_BillingName
Filter by paying member billing name.
Team_PayingMember_CompanyName
Filter by paying member company name.
Filter by Default Member Tariff Id.
Team_DefaultMemberTariff_Name
Filter by default member tariff name.
Filter by maximum team member count.
Team_TransferCreditsToPayingMember
Filter by transfer credits to paying member.
Filter by share time passes.
Filter by share extra services.
Filter by share booking credit.
Filter by discount for extra services.
Filter by discount for time passes.
Filter by discount for charges.
Filter by discount for tariffs.
Filter by profile summary.
Filter by profile website.
Filter by google Maps link.
Filter by whether the profile is public.
Filter by whether the team has a community group.
Filter by Team Logo File Name.
Filter by New Team Logo Url.
Filter by Clear Team Logo File.
Filter by Team Image1File Name.
Filter by New Team Image1Url.
Filter by Clear Team Image1File.
Filter by Team Image2File Name.
Filter by New Team Image2Url.
Filter by Clear Team Image2File.
Filter by Team Image3File Name.
Filter by New Team Image3Url.
Filter by Clear Team Image3File.
Filter by twitter handle.
Filter by telegram handle.
Filter by coworker full names.
Team_CoworkerBillingNames
Filter by coworker billing names.
Filter by number of active contracts.
Filter by average churn probability.
Filter by engagement level.
Team_DisableAttendanceDashboard
Filter by disable attendance dashboard.
Range Filters
from_Team_MaxTeamMemberCount
Filter by maximum team member count greater than or equal to this value.
to_Team_MaxTeamMemberCount
Filter by maximum team member count less than or equal to this value.
Filter by discount for extra services greater than or equal to this value.
Filter by discount for extra services less than or equal to this value.
from_Team_DiscountTimePasses
Filter by discount for time passes greater than or equal to this value.
to_Team_DiscountTimePasses
Filter by discount for time passes less than or equal to this value.
from_Team_DiscountCharges
Filter by discount for charges greater than or equal to this value.
Filter by discount for charges less than or equal to this value.
from_Team_DiscountTariffs
Filter by discount for tariffs greater than or equal to this value.
Filter by discount for tariffs less than or equal to this value.
from_Team_ActiveContracts
Filter by number of active contracts greater than or equal to this value.
Filter by number of active contracts less than or equal to this value.
from_Team_AvgChurnProbability
Filter by average churn probability greater than or equal to this value.
to_Team_AvgChurnProbability
Filter by average churn probability less than or equal to this value.
Filter records created on or after this date. Format: YYYY-MM-DDTHH:mm.
Filter records created on or before this date. Format: YYYY-MM-DDTHH:mm.
Filter records updated on or after this date. Format: YYYY-MM-DDTHH:mm.
Filter records updated on or before this date. Format: YYYY-MM-DDTHH:mm.
Code Examples
Simple listing
curl -X GET \
"https://spaces.nexudus.com/api/spaces/teams?page=1&size=15&orderBy=Name&dir=1" \
-H "Authorization: Bearer YOUR_TOKEN"
Filtering by Name
curl -X GET \
"https://spaces.nexudus.com/api/spaces/teams?Team_Name=example-value&orderBy=Name&dir=1" \
-H "Authorization: Bearer YOUR_TOKEN"
Range filters
curl -X GET \
"https://spaces.nexudus.com/api/spaces/teams?from_Team_UpdatedOn=2025-01-01T00:00&to_Team_UpdatedOn=2025-12-31T23:59&orderBy=UpdatedOn&dir=-1" \
-H "Authorization: Bearer YOUR_TOKEN"
Response
200
The list of Team records matching the query. See the Get one Team endpoint for the full list of properties returned for each record.
Partial records — The listing endpoint returns a summary representation of each Team. The following fields are not included in the Records[] response: Description, UseSpecialPrices, MaxTeamMemberCount, TransferCreditsToPayingMember, ShareTimePasses, ShareExtraServices, ShareBookingCredit, DiscountExtraServices, DiscountTimePasses, DiscountCharges, DiscountTariffs, ProfileSummary, ProfileTags, ProfileWebsite, GoogleMapsLink, Twitter, Facebook, Linkedin, Skype, Telegram, Github, Pinterest, Flickr, Instagram, Vimeo, Tumblr, Blogger, DisableAttendanceDashboard.To get all fields, fetch the full record using the Get one Team endpoint.Important for updates: When updating a record via PUT, always retrieve the full record with a GET request first, apply your changes to that complete data, and then send the updated record. Do not use data from a listing response as the base for a PUT request, as missing fields may be unintentionally cleared.
Number of records per page.
The field used for sorting.
The sort direction (1 = ascending, -1 = descending).
Index of the first item on the current page.
Index of the last item on the current page.
Total number of matching records across all pages.
Whether there is a next page of results.
Whether there is a previous page of results.
{
"Records": [
{
"BusinessId": 0,
"BusinessName": null,
"Name": "",
"Description": null,
"TunnelPrivateGroupId": null,
"TeamMembers": [],
"TeamAdministrators": [],
"CreateSingleInvoiceForTeam": false,
"UseSpecialPrices": false,
"PayingMemberId": null,
"PayingMemberFullName": null,
"PayingMemberCoworkerType": null,
"PayingMemberBillingName": null,
"PayingMemberCompanyName": null,
"DefaultMemberTariffId": null,
"DefaultMemberTariffName": null,
"MaxTeamMemberCount": null,
"TransferCreditsToPayingMember": false,
"ShareTimePasses": false,
"ShareExtraServices": false,
"ShareBookingCredit": false,
"DiscountExtraServices": null,
"DiscountTimePasses": null,
"DiscountCharges": null,
"DiscountTariffs": null,
"ProfileSummary": null,
"ProfileTags": null,
"ProfileWebsite": null,
"GoogleMapsLink": null,
"ProfileIsPublic": false,
"HasCommunityGroup": false,
"TeamLogoFileName": null,
"NewTeamLogoUrl": null,
"ClearTeamLogoFile": null,
"TeamImage1FileName": null,
"NewTeamImage1Url": null,
"ClearTeamImage1File": null,
"TeamImage2FileName": null,
"NewTeamImage2Url": null,
"ClearTeamImage2File": null,
"TeamImage3FileName": null,
"NewTeamImage3Url": null,
"ClearTeamImage3File": null,
"Twitter": null,
"Facebook": null,
"Linkedin": null,
"Skype": null,
"Telegram": null,
"Github": null,
"Pinterest": null,
"Flickr": null,
"Instagram": null,
"Vimeo": null,
"Tumblr": null,
"Blogger": null,
"CoworkerIds": null,
"CoworkerFullNames": null,
"CoworkerBillingNames": null,
"ActiveContracts": 0,
"AvgChurnProbability": null,
"EngagementLevel": null,
"DisableAttendanceDashboard": false,
"ExtraServices": [],
"Id": 87654321,
"UpdatedOn": "2025-01-15T10:30:00Z",
"CreatedOn": "2025-01-10T08:00:00Z",
"UniqueId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"UpdatedBy": "admin@example.com",
"IsNew": false,
"SystemId": null,
"ToStringText": "Team Example",
"LocalizationDetails": null,
"CustomFields": null
}
],
"CurrentPageSize": 15,
"CurrentPage": 1,
"CurrentOrderField": "Name",
"CurrentSortDirection": 1,
"FirstItem": 1,
"HasNextPage": false,
"HasPreviousPage": false,
"LastItem": 1,
"PageNumber": 1,
"PageSize": 15,
"TotalItems": 1,
"TotalPages": 1
}