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

# Get All My Connections

> Get all connections across all the current user's companies.



## OpenAPI

````yaml https://dev-api.cattix.com/openapi.json get /api/v1/companies/me/connections
openapi: 3.1.0
info:
  title: CATTIX API
  description: CATTIX Backend API
  version: 0.107.0
servers:
  - url: http://localhost:8000
    description: Local
  - url: https://dev-api.cattix.com
    description: Development
  - url: https://staging-api.cattix.com
    description: Staging
  - url: https://api.cattix.com
    description: Production
security: []
paths:
  /api/v1/companies/me/connections:
    get:
      tags:
        - Companies
      summary: Get All My Connections
      description: Get all connections across all the current user's companies.
      operationId: get_all_my_connections_api_v1_companies_me_connections_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/CompanyWithConnectionsSchema'
                type: array
                title: >-
                  Response Get All My Connections Api V1 Companies Me
                  Connections Get
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    CompanyWithConnectionsSchema:
      properties:
        name:
          type: string
          maxLength: 255
          minLength: 1
          title: The name of the company
        id:
          type: integer
          title: The ID of the company
        date_added:
          type: string
          format: date-time
          title: The date the company was added
        date_updated:
          type: string
          format: date-time
          title: The date the company was updated
        google_ads_customers:
          items:
            $ref: >-
              #/components/schemas/api__google_ads__database_data__schemas__GoogleAdsCustomerSchema
          type: array
          title: Google ads customers
          default: []
        google_business_locations:
          items:
            $ref: '#/components/schemas/GoogleBusinessLocationSchema'
          type: array
          title: Google Business Locations
          default: []
      type: object
      required:
        - name
        - id
        - date_added
        - date_updated
      title: CompanyWithConnectionsSchema
      description: The schema for a company with its connections.
    api__google_ads__database_data__schemas__GoogleAdsCustomerSchema:
      properties:
        id:
          type: integer
          title: Id
          description: The customer ID
        date_added:
          type: string
          format: date-time
          title: Date Added
        date_updated:
          type: string
          format: date-time
          title: Date Updated
        is_active:
          type: boolean
          title: Is Active
          default: true
        is_deleted:
          type: boolean
          title: Is Deleted
          default: false
        descriptive_name:
          type: string
          title: Descriptive Name
          description: The descriptive name of the customer
        currency_code:
          type: string
          title: Currency Code
          description: The currency code
        time_zone:
          type: string
          title: Time Zone
          description: The time zone
        status:
          type: string
          title: Status
          description: The status of the customer
        manager:
          type: boolean
          title: Manager
          description: Whether the customer is a manager account
      type: object
      required:
        - id
        - date_added
        - date_updated
        - descriptive_name
        - currency_code
        - time_zone
        - status
        - manager
      title: GoogleAdsCustomerSchema
      description: Schema for GoogleAdsCustomer model.
    GoogleBusinessLocationSchema:
      properties:
        id:
          type: string
          title: Id
          description: Google identifier for this location
        title:
          type: string
          title: Title
          description: Location name
        store_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Store Code
          description: External identifier for this location
        maps_uri:
          anyOf:
            - type: string
              maxLength: 2083
              minLength: 1
              format: uri
            - type: 'null'
          title: Maps Uri
          description: A link to the location on Maps
        storefront_address:
          anyOf:
            - $ref: '#/components/schemas/GooglePostalAddressSchema'
            - type: 'null'
          description: Physical address of the storefront
      type: object
      required:
        - id
        - title
      title: GoogleBusinessLocationSchema
    GooglePostalAddressSchema:
      properties:
        region_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Region Code
          description: >-
            CLDR region code of the country/region of the address. This is
            usually a two-letter code (e.g. 'UA', 'US').
        language_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Language Code
          description: The BCP-47 language code of the contents of this address (if known).
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Postal Code
          description: Postal code of the address.
        administrative_area:
          anyOf:
            - type: string
            - type: 'null'
          title: Administrative Area
          description: >-
            Top-level administrative subdivision of the country/region (e.g.
            state, province, oblast).
        locality:
          anyOf:
            - type: string
            - type: 'null'
          title: Locality
          description: Generally refers to the city/town portion of the address.
        sublocality:
          anyOf:
            - type: string
            - type: 'null'
          title: Sublocality
          description: Sublocality of the address (e.g. neighborhood, district).
        address_lines:
          items:
            type: string
          type: array
          title: Address Lines
          description: >-
            Unstructured address lines describing the lower levels of an
            address.
      type: object
      title: GooglePostalAddressSchema
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: api/v1/users/authorization/token

````