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

# Get Company Management Contact

> Get contact information for a company's management team by its ID.

This endpoint returns contact details for company representatives including:
- Email addresses
- Phone numbers
- Physical addresses
- Contact roles and titles
- Department information



## OpenAPI

````yaml get /companies/{company_id}/management/contact
openapi: 3.1.0
info:
  title: Registercheck API
  version: 1.0.0
servers:
  - url: https://jobs-api.registercheck.de/api/v2
security: []
paths:
  /companies/{company_id}/management/contact:
    get:
      tags:
        - Companies
      summary: Get Company Management Contact
      description: >-
        Get contact information for a company's management team by its ID.


        This endpoint returns contact details for company representatives
        including:

        - Email addresses

        - Phone numbers

        - Physical addresses

        - Contact roles and titles

        - Department information
      operationId: >-
        get_company_management_contact_companies__company_id__management_contact_get
      parameters:
        - name: company_id
          in: path
          required: true
          schema:
            type: string
            title: Company Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ManagementContactResponse'
        '404':
          description: Company not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '500':
          description: Internal server error
      security:
        - HTTPBearer: []
components:
  schemas:
    ManagementContactResponse:
      properties:
        id:
          type: string
          title: Id
          description: Unique company identifier
        representatives:
          anyOf:
            - items:
                $ref: '#/components/schemas/Representative'
              type: array
            - type: 'null'
          title: Representatives
          description: List of company representatives and their contact information
      type: object
      required:
        - id
      title: ManagementContactResponse
      description: Response model for company management contact information
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Representative:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the representative
        is_company:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Company
          description: Whether this representative is a company (legal entity)
        city:
          anyOf:
            - type: string
            - type: 'null'
          title: City
          description: City of residence or registered office
        titles:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Titles
          description: Academic or professional titles
        last_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Name
          description: Last name of the person
        first_name:
          anyOf:
            - type: string
            - type: 'null'
          title: First Name
          description: First name of the person
        birth_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Birth Name
          description: Birth name if different from current name
        birth_date:
          anyOf:
            - type: string
            - type: 'null'
          title: Birth Date
          description: Date of birth
        role:
          anyOf:
            - type: string
            - type: 'null'
          title: Role
          description: Role in the company
        job:
          anyOf:
            - type: string
            - type: 'null'
          title: Job
          description: Job title or position
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
          description: Full name of the representative
        register_court:
          anyOf:
            - type: string
            - type: 'null'
          title: Register Court
          description: Register court (for legal entity representatives)
        register_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Register Number
          description: Register number (for legal entity representatives)
        register_prefix:
          anyOf:
            - type: string
            - type: 'null'
          title: Register Prefix
          description: Register prefix (for legal entity representatives)
        register_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Register Id
          description: Register ID (for legal entity representatives)
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
          description: Current status of the representation
        representation_rule:
          anyOf:
            - type: string
            - type: 'null'
          title: Representation Rule
          description: How representation authority is exercised
        is_general_partner:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is General Partner
          description: Whether this is a general partner
        online_presence:
          anyOf:
            - $ref: '#/components/schemas/RepresentativeOnlinePresence'
            - type: 'null'
          description: Representative's online presence and contact information
      type: object
      required:
        - id
      title: Representative
      description: Model for company representative information
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    RepresentativeOnlinePresence:
      properties:
        linkedin_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Linkedin Url
          description: LinkedIn personal profile URL
        twitter_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Twitter Url
          description: Twitter/X personal profile URL
        phone_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Phone Number
          description: Direct phone number
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
          description: Direct email address
      type: object
      title: RepresentativeOnlinePresence
      description: Model for representative's online presence information
  securitySchemes:
    HTTPBearer:
      type: http
      description: Enter your API key
      scheme: bearer

````