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

# Get All Users

> Returns team information

Retrieves details about the current team, including each team member's status, license, and relevant user data.

* **Tags**: `teams`
* **Response**: Team information and associated members.


## OpenAPI

````yaml GET /v1/team
openapi: 3.0.1
info:
  title: Salesfinity API
  description: API documentation for Salesfinity platform
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://client-api.salesfinity.co
security:
  - ApiKeyAuth: []
paths:
  /v1/team:
    get:
      tags:
        - Teams
      description: Returns team information
      operationId: get-team
      responses:
        '200':
          description: Team information retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetTeamsResponseDTO'
components:
  schemas:
    GetTeamsResponseDTO:
      type: object
      properties:
        _id:
          type: string
        name:
          type: string
        users:
          type: array
          items:
            $ref: '#/components/schemas/MemberDTO'
      required:
        - _id
        - name
        - users
    MemberDTO:
      type: object
      properties:
        user:
          $ref: '#/components/schemas/UserDTO'
        status:
          type: string
        license:
          type: string
      required:
        - user
        - status
        - license
    UserDTO:
      type: object
      properties:
        _id:
          type: string
        email:
          type: string
        first_name:
          type: string
        last_name:
          type: string
      required:
        - _id
        - email
        - first_name
        - last_name
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````