> ## 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 registration documents



## OpenAPI

````yaml /api-reference/partners/api.json get /v1/professionals/{id}/documents
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}/documents:
    get:
      tags:
        - Professionals
      summary: Professional registration documents
      operationId: partners.professionals.documents
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
      responses:
        '200':
          description: '`ProfessionalInstallerDocumentsResource`'
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: >-
                      #/components/schemas/ProfessionalInstallerDocumentsResource
                required:
                  - data
components:
  schemas:
    ProfessionalInstallerDocumentsResource:
      type: object
      properties:
        kbis:
          type:
            - string
            - 'null'
        justificatif_identite:
          type:
            - string
            - 'null'
        rc_pro:
          type:
            - string
            - 'null'
        attestation_regularite_sociale:
          type:
            - string
            - 'null'
        attestation_regularite_fiscale:
          type:
            - string
            - 'null'
        assurance_decennale:
          type:
            - string
            - 'null'
        autres:
          anyOf:
            - type: string
            - type: array
              items:
                type: string
              minItems: 0
              maxItems: 0
              additionalItems: false
      required:
        - kbis
        - justificatif_identite
        - rc_pro
        - attestation_regularite_sociale
        - attestation_regularite_fiscale
        - assurance_decennale
        - autres
      title: ProfessionalInstallerDocumentsResource

````