> ## 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.

# Get one Team

> Retrieve a single Team record by its Id.

## Authentication

<Note>
  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-Read`** role.
</Note>

## Path Parameters

<ParamField path="id" type="integer" required>
  The Id of the Team record to retrieve.
</ParamField>

## Code Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET \
    "https://spaces.nexudus.com/api/spaces/teams/87654321" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://spaces.nexudus.com/api/spaces/teams/87654321',
    {
      headers: {
        'Authorization': 'Bearer YOUR_TOKEN'
      }
    }
  );

  const record = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://spaces.nexudus.com/api/spaces/teams/87654321',
      headers={
          'Authorization': 'Bearer YOUR_TOKEN'
      }
  )

  record = response.json()
  ```
</CodeGroup>

## Response

### 200

<ResponseField name="BusinessId" type="integer">
  Business Id.
</ResponseField>

<ResponseField name="BusinessName" type="string">
  Business name.
</ResponseField>

<ResponseField name="Name" type="string">
  Team name.
</ResponseField>

<ResponseField name="Description" type="string">
  Team description.
</ResponseField>

<ResponseField name="TunnelPrivateGroupId" type="string">
  Tunnel private group ID.
</ResponseField>

<ResponseField name="TeamMembers" type="integer[]">
  Team Members.
</ResponseField>

<ResponseField name="TeamAdministrators" type="integer[]">
  Team Administrators.
</ResponseField>

<ResponseField name="CreateSingleInvoiceForTeam" type="boolean">
  Create a single invoice for the team.
</ResponseField>

<ResponseField name="UseSpecialPrices" type="boolean">
  Use special prices.
</ResponseField>

<ResponseField name="PayingMemberId" type="integer">
  Paying Member Id.
</ResponseField>

<ResponseField name="PayingMemberFullName" type="string">
  Paying member full name.
</ResponseField>

<ResponseField name="PayingMemberCoworkerType" type="string">
  Paying member coworker type.
</ResponseField>

<ResponseField name="PayingMemberBillingName" type="string">
  Paying member billing name.
</ResponseField>

<ResponseField name="PayingMemberCompanyName" type="string">
  Paying member company name.
</ResponseField>

<ResponseField name="DefaultMemberTariffId" type="integer">
  Default Member Tariff Id.
</ResponseField>

<ResponseField name="DefaultMemberTariffName" type="string">
  Default member tariff name.
</ResponseField>

<ResponseField name="MaxTeamMemberCount" type="number">
  Maximum team member count.
</ResponseField>

<ResponseField name="TransferCreditsToPayingMember" type="boolean">
  Transfer credits to paying member.
</ResponseField>

<ResponseField name="ShareTimePasses" type="boolean">
  Share time passes.
</ResponseField>

<ResponseField name="ShareExtraServices" type="boolean">
  Share extra services.
</ResponseField>

<ResponseField name="ShareBookingCredit" type="boolean">
  Share booking credit.
</ResponseField>

<ResponseField name="DiscountExtraServices" type="number">
  Discount for extra services.
</ResponseField>

<ResponseField name="DiscountTimePasses" type="number">
  Discount for time passes.
</ResponseField>

<ResponseField name="DiscountCharges" type="number">
  Discount for charges.
</ResponseField>

<ResponseField name="DiscountTariffs" type="number">
  Discount for tariffs.
</ResponseField>

<ResponseField name="ProfileSummary" type="string">
  Profile summary.
</ResponseField>

<ResponseField name="ProfileTags" type="string">
  Profile tags.
</ResponseField>

<ResponseField name="ProfileWebsite" type="string">
  Profile website.
</ResponseField>

<ResponseField name="GoogleMapsLink" type="string">
  Google Maps link.
</ResponseField>

<ResponseField name="ProfileIsPublic" type="boolean">
  Whether the profile is public.
</ResponseField>

<ResponseField name="HasCommunityGroup" type="boolean">
  Whether the team has a community group.
</ResponseField>

<ResponseField name="TeamLogoFileName" type="string">
  Team Logo File Name.
</ResponseField>

<ResponseField name="NewTeamLogoUrl" type="string">
  New Team Logo Url.
</ResponseField>

<ResponseField name="ClearTeamLogoFile" type="boolean">
  Clear Team Logo File.
</ResponseField>

<ResponseField name="TeamImage1FileName" type="string">
  Team Image1File Name.
</ResponseField>

<ResponseField name="NewTeamImage1Url" type="string">
  New Team Image1Url.
</ResponseField>

<ResponseField name="ClearTeamImage1File" type="boolean">
  Clear Team Image1File.
</ResponseField>

<ResponseField name="TeamImage2FileName" type="string">
  Team Image2File Name.
</ResponseField>

<ResponseField name="NewTeamImage2Url" type="string">
  New Team Image2Url.
</ResponseField>

<ResponseField name="ClearTeamImage2File" type="boolean">
  Clear Team Image2File.
</ResponseField>

<ResponseField name="TeamImage3FileName" type="string">
  Team Image3File Name.
</ResponseField>

<ResponseField name="NewTeamImage3Url" type="string">
  New Team Image3Url.
</ResponseField>

<ResponseField name="ClearTeamImage3File" type="boolean">
  Clear Team Image3File.
</ResponseField>

<ResponseField name="Twitter" type="string">
  Twitter handle.
</ResponseField>

<ResponseField name="Facebook" type="string">
  Facebook URL.
</ResponseField>

<ResponseField name="Linkedin" type="string">
  LinkedIn URL.
</ResponseField>

<ResponseField name="Skype" type="string">
  Skype handle.
</ResponseField>

<ResponseField name="Telegram" type="string">
  Telegram handle.
</ResponseField>

<ResponseField name="Github" type="string">
  GitHub URL.
</ResponseField>

<ResponseField name="Pinterest" type="string">
  Pinterest URL.
</ResponseField>

<ResponseField name="Flickr" type="string">
  Flickr URL.
</ResponseField>

<ResponseField name="Instagram" type="string">
  Instagram URL.
</ResponseField>

<ResponseField name="Vimeo" type="string">
  Vimeo URL.
</ResponseField>

<ResponseField name="Tumblr" type="string">
  Tumblr URL.
</ResponseField>

<ResponseField name="Blogger" type="string">
  Blogger URL.
</ResponseField>

<ResponseField name="CoworkerIds" type="string">
  Coworker IDs.
</ResponseField>

<ResponseField name="CoworkerFullNames" type="string">
  Coworker full names.
</ResponseField>

<ResponseField name="CoworkerBillingNames" type="string">
  Coworker billing names.
</ResponseField>

<ResponseField name="ActiveContracts" type="integer">
  Number of active contracts.
</ResponseField>

<ResponseField name="AvgChurnProbability" type="number">
  Average churn probability.
</ResponseField>

<ResponseField name="EngagementLevel" type="string">
  Engagement level.
</ResponseField>

<ResponseField name="DisableAttendanceDashboard" type="boolean">
  Disable attendance dashboard.
</ResponseField>

<ResponseField name="ExtraServices" type="integer[]">
  Extra Services.
</ResponseField>

<ResponseField name="Id" type="integer">
  Unique record identifier.
</ResponseField>

<ResponseField name="UniqueId" type="string">
  UUID of the record.
</ResponseField>

<ResponseField name="CreatedOn" type="string">
  Date and time the record was created (ISO 8601).
</ResponseField>

<ResponseField name="UpdatedOn" type="string">
  Date and time the record was last updated (ISO 8601).
</ResponseField>

<ResponseField name="UpdatedBy" type="string">
  Email of the user who last updated this record.
</ResponseField>

<ResponseField name="IsNew" type="boolean">
  Whether the record was recently created.
</ResponseField>

<ResponseField name="SystemId" type="string">
  External system identifier.
</ResponseField>

```json Example Response theme={null}
{
  "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
}
```
