> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tic.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get current team details

> Returns the caller's team, including its members, integrations, and the currently active Lens subscription plan.



## OpenAPI

````yaml get /team
openapi: 3.1.1
info:
  title: TIC Lens API
  description: "The TIC Lens API provides programmatic access to company, person, property, vehicle, and order data.\r\n\r\n## Authentication\r\n\r\nAll requests require an API key passed via the `x-api-key` header:\r\n\r\n```bash\r\ncurl -H \"x-api-key: YOUR_API_KEY\" https://lens-api.tic.io/companies/123\r\n```\r\n\r\nAPI keys are managed through the TIC Lens web application under **Settings → API Keys**.\r\n\r\n## Base URL\r\n\r\n| Environment | URL |\r\n|-------------|-----|\r\n| Production  | `https://lens-api.tic.io` |\r\n\r\n## Feature Access\r\n\r\nEndpoints are gated by your subscription plan. If your plan does not include a feature, the endpoint will return `403 Forbidden`.\r\n\r\n## Rate Limits\r\n\r\nRate limits are applied per API key. If you exceed the limit, requests will return `429 Too Many Requests`.\r\n\r\n## Response Format\r\n\r\nAll responses are JSON. Null values are omitted from responses.\r\n"
  version: v1
servers:
  - url: https://lens-api.tic.io
security:
  - ApiKey: []
tags:
  - name: Addresses
  - name: Bolagsverket
  - name: Brf
  - name: Companies
  - name: Documents
  - name: FlightImages
  - name: Free
  - name: Orders
  - name: OrdersExports
  - name: PaymentControl
  - name: PaymentControlImport
  - name: Persons
  - name: Properties
  - name: PublicSearch
  - name: SearchAutocomplete
  - name: Sentinel
  - name: ServingPermits
  - name: Team
  - name: Teams
  - name: Transportstyrelsen
  - name: Vehicles
  - name: WatchList
paths:
  /team:
    get:
      tags:
        - Team
      summary: Get current team details
      description: >-
        Returns the caller's team, including its members, integrations, and the
        currently active Lens subscription plan.
      operationId: GetTeamDetails
      responses:
        '200':
          description: Team details with current Lens subscription
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Ormeo_Library_Dtos_Team_Dto'
components:
  schemas:
    Ormeo_Library_Dtos_Team_Dto:
      type: object
      properties:
        teamId:
          type: integer
          format: int32
        teamGuid:
          type: string
          format: uuid
        teamName:
          type:
            - 'null'
            - string
        teamDescription:
          type:
            - 'null'
            - string
        lastUpdatedAtUtc:
          type: string
          format: date-time
        resoldByTeamId:
          type:
            - 'null'
            - integer
          format: int32
        teamEmail:
          type:
            - 'null'
            - string
        allowAnonymousAccess:
          type:
            - 'null'
            - boolean
        allowPersonCreditChecks:
          type:
            - 'null'
            - boolean
        senderNameCreditChecks:
          type:
            - 'null'
            - string
        numberOfUsers:
          type:
            - 'null'
            - integer
          format: int32
        hasActiveSubscription:
          type: boolean
        isSubscriptionExpired:
          type: boolean
        subscriptionPlanName:
          type:
            - 'null'
            - string
        subscriptionValidFrom:
          type:
            - 'null'
            - string
          format: date-time
        subscriptionValidTo:
          type:
            - 'null'
            - string
          format: date-time
        features:
          type:
            - 'null'
            - array
          items:
            type: string
        integrations:
          type:
            - 'null'
            - array
          items:
            $ref: '#/components/schemas/Ormeo_Library_Dtos_TeamIntegration_Dto2'
      additionalProperties: false
    Ormeo_Library_Dtos_TeamIntegration_Dto2:
      type: object
      properties:
        teamIntegrationId:
          type: integer
          format: int32
        teamId:
          type: integer
          format: int32
        teamIntegrationGuid:
          type: string
          format: uuid
        integrationType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_IntegrationType'
        integrationStatusType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_IntegrationStatusType'
        validUntil:
          type:
            - 'null'
            - string
          format: date-time
        lastUpdatedAtUtc:
          type: string
          format: date-time
        navetIntegration:
          $ref: '#/components/schemas/Ormeo_Library_Dtos_TeamIntegration_Navet_Dto'
      additionalProperties: false
    Ormeo_Library_Entities_IntegrationType:
      enum:
        - crm_Attio
        - chat_Slack
        - other_ActaPublica
        - other_Trapets
        - other_SkatteverketNavet
        - auth_SkatteverketNavetTest
        - auth_SkatteverketNavetProduction
        - other_TrapetsBulk
        - webhook_OAuth2
      type: string
    Ormeo_Library_Entities_IntegrationStatusType:
      enum:
        - pending
        - connected
        - disconnected
        - error
      type: string
    Ormeo_Library_Dtos_TeamIntegration_Navet_Dto:
      type: object
      properties:
        bestallningsidentitet:
          type:
            - 'null'
            - string
        organisationsnummer:
          type:
            - 'null'
            - string
        kundnamn:
          type:
            - 'null'
            - string
        isTest:
          type:
            - 'null'
            - boolean
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````