# Get Managed Company

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/msp/companies/{company_id}/:
    get:
      summary: Get Managed Company
      deprecated: false
      description: ''
      tags:
        - MSP Guide/API Reference/Managed Company
      parameters:
        - name: company_id
          in: path
          description: ''
          required: true
          example: '{{company_id}}'
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                  uid:
                    type: string
                  name:
                    type: string
                  msp_node:
                    type: integer
                  packages:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        name:
                          type: string
                        status:
                          type: string
                        type:
                          type: string
                        license_count:
                          type: integer
                      x-apidog-orders:
                        - id
                        - name
                        - status
                        - type
                        - license_count
                  created_at:
                    type: string
                required:
                  - id
                  - uid
                  - name
                  - msp_node
                  - packages
                  - created_at
                x-apidog-orders:
                  - id
                  - uid
                  - name
                  - msp_node
                  - packages
                  - created_at
              example:
                id: 305
                uid: 9eca1853-ea58-4f6e-b01e-84a2d2686f48
                name: Acme Corp Ui
                msp_node: 69
                packages:
                  - id: 561
                    name: NFR License
                    status: Active
                    type: NFR
                    license_count: 10
                created_at: '2025-12-31T00:20:59.146156Z'
          headers: {}
          x-apidog-name: ''
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: array
                    items:
                      type: string
                required:
                  - error
                x-apidog-orders:
                  - error
              example:
                error:
                  - >-
                    There was an issue processing your request, please try
                    again.
          headers: {}
          x-apidog-name: ''
        '403':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
                required:
                  - detail
                x-apidog-orders:
                  - detail
              example:
                detail: Authentication credentials were not provided.
          headers: {}
          x-apidog-name: Unauthenticated
      security:
        - bearer: []
      x-apidog-folder: MSP Guide/API Reference/Managed Company
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1187388/apis/api-28136258-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers: []
security:
  - bearer: []

```
