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

# Professional details



## OpenAPI

````yaml /api-reference/partners/api.json get /v1/professionals/{id}
openapi: 3.1.0
info:
  title: Laravel
  version: 0.0.1
servers:
  - url: https://api.opx.co/partners
    description: Production
security: []
paths:
  /v1/professionals/{id}:
    get:
      tags:
        - Professionals
      summary: Professional details
      operationId: partners.professionals.show
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
      responses:
        '200':
          description: '`ProfessionalDetailsResource`'
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/ProfessionalDetailsResource'
                required:
                  - data
components:
  schemas:
    ProfessionalDetailsResource:
      type: object
      properties:
        id:
          type: integer
        opx_reference:
          type: string
        company_name:
          type:
            - string
            - 'null'
        siren:
          type:
            - string
            - 'null'
        siret:
          type:
            - string
            - 'null'
        address:
          type:
            - string
            - 'null'
        city:
          type:
            - string
            - 'null'
        zipcode:
          type:
            - string
            - 'null'
        country:
          type:
            - string
            - 'null'
        email_company:
          type:
            - string
            - 'null'
        phone_company:
          type:
            - string
            - 'null'
        legal_form:
          type:
            - string
            - 'null'
        share_capital:
          type:
            - integer
            - 'null'
        rcs_city:
          type:
            - string
            - 'null'
        company_creation_date:
          type:
            - string
            - 'null'
        firstname:
          type: string
        lastname:
          type: string
        signatory_function:
          type: string
        phone:
          type: string
        email:
          type: string
        registration_date:
          type:
            - string
            - 'null'
        account_status:
          type:
            - string
            - 'null'
        partner:
          type:
            - string
            - 'null'
        convention_custom_reference:
          type:
            - string
            - 'null'
        active_operation_codes:
          anyOf:
            - type: string
            - type: array
              items:
                type: string
              minItems: 0
              maxItems: 0
              additionalItems: false
        user_emails:
          anyOf:
            - type: string
            - type: array
              items:
                type: string
              minItems: 0
              maxItems: 0
              additionalItems: false
      required:
        - id
        - opx_reference
        - company_name
        - siren
        - siret
        - address
        - city
        - zipcode
        - country
        - email_company
        - phone_company
        - legal_form
        - share_capital
        - rcs_city
        - company_creation_date
        - firstname
        - lastname
        - signatory_function
        - phone
        - email
        - registration_date
        - account_status
        - partner
        - convention_custom_reference
        - active_operation_codes
        - user_emails
      title: ProfessionalDetailsResource

````