Oper Third Parties API

The Third Parties API from Oper — 20 operation(s) for third parties.

Operations 36

GET /api/third-parties/broker-relationships/ #
POST /api/third-parties/broker-relationships/ #
DELETE /api/third-parties/broker-relationships/{id}/ #
GET /api/third-parties/broker-relationships/{id}/ #
PATCH /api/third-parties/broker-relationships/{id}/ #
PUT /api/third-parties/broker-relationships/{id}/ #
GET /api/third-parties/broker-territories/ #
POST /api/third-parties/broker-territories/ #
DELETE /api/third-parties/broker-territories/{id}/ #
GET /api/third-parties/broker-territories/{id}/ #
PATCH /api/third-parties/broker-territories/{id}/ #
PUT /api/third-parties/broker-territories/{id}/ #
GET /api/third-parties/broker-users/ #
POST /api/third-parties/broker-users/ #
DELETE /api/third-parties/broker-users/{id}/ #
GET /api/third-parties/broker-users/{id}/ #
PATCH /api/third-parties/broker-users/{id}/ #
PUT /api/third-parties/broker-users/{id}/ #
GET /api/third-parties/brokers-imports/ #
POST /api/third-parties/brokers-imports/ #
GET /api/third-parties/brokers-imports/{id}/ #
GET /api/third-parties/brokers/ #
POST /api/third-parties/brokers/ #
GET /api/third-parties/brokers/direct-broker/ #
POST /api/third-parties/brokers/user-profiles/import #
GET /api/third-parties/brokers/{id}/ #
PATCH /api/third-parties/brokers/{id}/ #
PUT /api/third-parties/brokers/{id}/ #
GET /api/third-parties/estimators/ #
GET /api/third-parties/estimators/{id}/ #
GET /api/third-parties/insurance-providers/ #
GET /api/third-parties/insurance-providers/{id}/ #
GET /api/third-parties/lead-generators/ #
GET /api/third-parties/lead-generators/{id}/ #
GET /api/third-parties/notaries/ #
GET /api/third-parties/notaries/{id}/ #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/oper-third-parties-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

oper-third-parties-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Oper Agent Documents Third Parties API
  version: '1.0'
servers:
- url: https://api.opercredits.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Third Parties
paths:
  /api/third-parties/broker-relationships/:
    get:
      operationId: api_third_parties_broker_relationships_list
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/BrokerRelationshipAuto'
                type: array
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
    post:
      operationId: api_third_parties_broker_relationships_create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BrokerRelationshipAuto'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/BrokerRelationshipAuto'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/BrokerRelationshipAuto'
        required: true
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrokerRelationshipAuto'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/broker-relationships/{id}/:
    delete:
      operationId: api_third_parties_broker_relationships_destroy
      parameters:
      - description: A unique integer value identifying this Broker Relationship.
        in: path
        name: id
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: No response body
      security:
      - jwtAuth: []
      tags:
      - Third Parties
    get:
      operationId: api_third_parties_broker_relationships_retrieve
      parameters:
      - description: A unique integer value identifying this Broker Relationship.
        in: path
        name: id
        required: true
        schema:
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrokerRelationshipAuto'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
    patch:
      operationId: api_third_parties_broker_relationships_partial_update
      parameters:
      - description: A unique integer value identifying this Broker Relationship.
        in: path
        name: id
        required: true
        schema:
          type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedBrokerRelationshipAuto'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedBrokerRelationshipAuto'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedBrokerRelationshipAuto'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrokerRelationshipAuto'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
    put:
      operationId: api_third_parties_broker_relationships_update
      parameters:
      - description: A unique integer value identifying this Broker Relationship.
        in: path
        name: id
        required: true
        schema:
          type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BrokerRelationshipAuto'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/BrokerRelationshipAuto'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/BrokerRelationshipAuto'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrokerRelationshipAuto'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/broker-territories/:
    get:
      operationId: api_third_parties_broker_territories_list
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/BrokerTerritoryAuto'
                type: array
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
    post:
      operationId: api_third_parties_broker_territories_create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BrokerTerritoryAuto'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/BrokerTerritoryAuto'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/BrokerTerritoryAuto'
        required: true
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrokerTerritoryAuto'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/broker-territories/{id}/:
    delete:
      operationId: api_third_parties_broker_territories_destroy
      parameters:
      - description: A unique integer value identifying this Broker territory.
        in: path
        name: id
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: No response body
      security:
      - jwtAuth: []
      tags:
      - Third Parties
    get:
      operationId: api_third_parties_broker_territories_retrieve
      parameters:
      - description: A unique integer value identifying this Broker territory.
        in: path
        name: id
        required: true
        schema:
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrokerTerritoryAuto'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
    patch:
      operationId: api_third_parties_broker_territories_partial_update
      parameters:
      - description: A unique integer value identifying this Broker territory.
        in: path
        name: id
        required: true
        schema:
          type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedBrokerTerritoryAuto'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedBrokerTerritoryAuto'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedBrokerTerritoryAuto'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrokerTerritoryAuto'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
    put:
      operationId: api_third_parties_broker_territories_update
      parameters:
      - description: A unique integer value identifying this Broker territory.
        in: path
        name: id
        required: true
        schema:
          type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BrokerTerritoryAuto'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/BrokerTerritoryAuto'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/BrokerTerritoryAuto'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrokerTerritoryAuto'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/broker-users/:
    get:
      operationId: api_third_parties_broker_users_list
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ThirdParty2BaseUserAuto'
                type: array
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
    post:
      operationId: api_third_parties_broker_users_create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ThirdParty2BaseUserAuto'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ThirdParty2BaseUserAuto'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ThirdParty2BaseUserAuto'
        required: true
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThirdParty2BaseUserAuto'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/broker-users/{id}/:
    delete:
      operationId: api_third_parties_broker_users_destroy
      parameters:
      - description: A unique integer value identifying this Third Party to Application User.
        in: path
        name: id
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: No response body
      security:
      - jwtAuth: []
      tags:
      - Third Parties
    get:
      operationId: api_third_parties_broker_users_retrieve
      parameters:
      - description: A unique integer value identifying this Third Party to Application User.
        in: path
        name: id
        required: true
        schema:
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThirdParty2BaseUserAuto'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
    patch:
      operationId: api_third_parties_broker_users_partial_update
      parameters:
      - description: A unique integer value identifying this Third Party to Application User.
        in: path
        name: id
        required: true
        schema:
          type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedThirdParty2BaseUserAuto'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedThirdParty2BaseUserAuto'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedThirdParty2BaseUserAuto'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThirdParty2BaseUserAuto'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
    put:
      operationId: api_third_parties_broker_users_update
      parameters:
      - description: A unique integer value identifying this Third Party to Application User.
        in: path
        name: id
        required: true
        schema:
          type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ThirdParty2BaseUserAuto'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ThirdParty2BaseUserAuto'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ThirdParty2BaseUserAuto'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThirdParty2BaseUserAuto'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/brokers-imports/:
    get:
      operationId: api_third_parties_brokers_imports_list
      parameters:
      - description: Which field to use when ordering the results.
        in: query
        name: ordering
        required: false
        schema:
          type: string
      - description: '* `initialized` - Initialized

          * `running` - Running

          * `error` - Error

          * `finished` - Finished'
        in: query
        name: status
        schema:
          enum:
          - error
          - finished
          - initialized
          - running
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/BrokerBulkImportLog'
                type: array
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
    post:
      operationId: api_third_parties_brokers_imports_create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BrokerBulkImportLog'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/BrokerBulkImportLog'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/BrokerBulkImportLog'
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrokerBulkImportLog'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/brokers-imports/{id}/:
    get:
      operationId: api_third_parties_brokers_imports_retrieve
      parameters:
      - description: A unique integer value identifying this Broker Bulk Import Log.
        in: path
        name: id
        required: true
        schema:
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrokerBulkImportLog'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/brokers/:
    get:
      description: 'Returns the list of brokers.

        For brokers, this returns only themselves.

        For analysts, this returns all brokers.'
      operationId: api_third_parties_brokers_list
      parameters:
      - description: A search term.
        in: query
        name: search
        required: false
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ListBroker'
                type: array
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
    post:
      description: 'Returns the list of brokers.

        For brokers, this returns only themselves.

        For analysts, this returns all brokers.'
      operationId: api_third_parties_brokers_create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Broker'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Broker'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Broker'
        required: true
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Broker'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/brokers/direct-broker/:
    get:
      operationId: api_third_parties_brokers_direct_broker_retrieve
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DirectBroker'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/brokers/user-profiles/import:
    post:
      operationId: api_third_parties_brokers_user_profiles_import_create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BrokerUserProfileBulkImport'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/BrokerUserProfileBulkImport'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/BrokerUserProfileBulkImport'
        required: true
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrokerUserProfileBulkImport'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/brokers/{id}/:
    get:
      description: 'Returns the list of brokers.

        For brokers, this returns only themselves.

        For analysts, this returns all brokers.'
      operationId: api_third_parties_brokers_retrieve
      parameters:
      - description: A unique integer value identifying this Broker.
        in: path
        name: id
        required: true
        schema:
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Broker'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
    patch:
      description: 'Returns the list of brokers.

        For brokers, this returns only themselves.

        For analysts, this returns all brokers.'
      operationId: api_third_parties_brokers_partial_update
      parameters:
      - description: A unique integer value identifying this Broker.
        in: path
        name: id
        required: true
        schema:
          type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedBroker'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedBroker'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedBroker'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Broker'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
    put:
      description: 'Returns the list of brokers.

        For brokers, this returns only themselves.

        For analysts, this returns all brokers.'
      operationId: api_third_parties_brokers_update
      parameters:
      - description: A unique integer value identifying this Broker.
        in: path
        name: id
        required: true
        schema:
          type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Broker'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Broker'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Broker'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Broker'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/estimators/:
    get:
      description: Returns the list of estimators.
      operationId: api_third_parties_estimators_list
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ReducedEstimator'
                type: array
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/estimators/{id}/:
    get:
      description: Returns the list of estimators.
      operationId: api_third_parties_estimators_retrieve
      parameters:
      - description: A unique integer value identifying this Estimator.
        in: path
        name: id
        required: true
        schema:
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Estimator'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/insurance-providers/:
    get:
      description: Returns the list of insurance providers.
      operationId: api_third_parties_insurance_providers_list
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ReducedInsuranceProvider'
                type: array
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/insurance-providers/{id}/:
    get:
      description: Returns the list of insurance providers.
      operationId: api_third_parties_insurance_providers_retrieve
      parameters:
      - description: A unique integer value identifying this Insurance provider.
        in: path
        name: id
        required: true
        schema:
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InsuranceProvider'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/lead-generators/:
    get:
      description: Returns the list of lead generators.
      operationId: api_third_parties_lead_generators_list
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ReducedLeadGenerator'
                type: array
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/lead-generators/{id}/:
    get:
      description: Returns the list of lead generators.
      operationId: api_third_parties_lead_generators_retrieve
      parameters:
      - description: A unique integer value identifying this Lead Generator.
        in: path
        name: id
        required: true
        schema:
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LeadGenerator'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/notaries/:
    get:
      description: Returns the list of notaries.
      operationId: api_third_parties_notaries_list
      parameters:
      - description: A search term.
        in: query
        name: search
        required: false
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/Notary'
                type: array
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
  /api/third-parties/notaries/{id}/:
    get:
      description: Returns the list of notaries.
      operationId: api_third_parties_notaries_retrieve
      parameters:
      - description: A unique integer value identifying this Notary.
        in: path
        name: id
        required: true
        schema:
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Notary'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Third Parties
components:
  schemas:
    PatchedThirdParty2BaseUserAuto:
      properties:
        id:
          readOnly: true
          type: integer
        main_contact:
          type: boolean
        third_party:
          type: integer
        user:
          type: integer
      type: object
    PatchedBrokerTerritoryAuto:
      properties:
        broker:
          type: integer
        id:
          readOnly: true
          type: integer
        location:
          maxLength: 256
          type: string
      type: object
    UserRole:
      description: Can be managed at /resources/user-role
      properties:
        definition:
          type: string
        id:
          type: integer
        order:
          readOnly: true
          type: integer
      required:
      - definition
      - id
      - order
      type: object
    DirectBroker:
      description: "Baseclass for Reduced serializers.\n\nWill validate whether the objects exists, and returns the instance in to_internal_value\nSubclasses must implement Meta with at least the model and field attributes\n\nRaises\n------\n    Validations errors if the object doesn't exist\n    OperBadConfigurationException if the model isn't set"
      properties:
        bank_account:
          readOnly: true
          type: string
        company_registration_number:
          readOnly: true
          type:
          - string
          - 'null'
        company_type:
          allOf:
          - $ref: '#/components/schemas/CompanyType'
          readOnly: true
        fsma_reference:
          readOnly: true
          type:
          - string
          - 'null'
        id:
          type: integer
        main_address:
          additionalProperties: {}
          readOnly: true
          type:
          - object
          - 'null'
        name:
          readOnly: true
          type: string
        vat_number:
          readOnly: true
          type: string
      required:
      - bank_account
      - company_registration_number
      - company_type
      - fsma_reference
      - id
      - main_address
      - name
      - vat_number
      type: object
    Country:
      description: Can be managed at /resources/country
      properties:
        definition:
          type: string
        id:
          type: integer
        order:
          readOnly: true
          type: integer
      required:
      - definition
      - id
      - order
      type: object
    Broker:
      properties:
        account_manager:
          allOf:
          - $ref: '#/components/schemas/ReducedBaseUser'
        addresses:
          items:
            $ref: '#/components/schemas/Profile2Address'
          type: array
        bank_account:
          type: string
        commission_email:
          allOf:
          - $ref: '#/components/schemas/Profile2Email'
          readOnly: true
        company_type:
          allOf:
          - $ref: '#/components/schemas/CompanyType'
        confiscate_commission:
          type: boolean
        emails:
          items:
            $ref: '#/components/schemas/Profile2Email'
          type: array
        fsma_reference:
          type:
          - string
          - 'null'
        fsma_status:
          allOf:
          - $ref: '#/components/schemas/FsmaStatus'
        id:
          readOnly: true
          type: integer
        legal_address:
          allOf:
          - $ref: '#/components/schemas/Profile2Address'
          readOnly: true
        main_contact:
          allOf:
          - $ref: '#/components/schemas/BaseUserProfileWithContacts'
          readOnly: true
        name:
          type: string
        outstanding_debt:
          format: double
          readOnly: true
          type: number
        phone_numbers:
          items:
            $ref: '#/components/schemas/Profile2Phone'
          type: array
        sector:
          allOf:
          - $ref: '#/components/schemas/Sector'
        vat_number:
          type: string
      required:
      - addresses
      - commission_email
      - emails
      - id
      - legal_address
      - main_contact
      - name
      - outstanding_debt
      - phone_numbers
      - vat_number
      type: object
    BrokerBulkImportLogStatusEnum:
      description: '* `initialized` - Initialized

        * `running` - Running

        * `error` - Error

        * `finished` - Finished'
      enum:
      - initialized
      - running
      - error
      - finished
      type: string
    BrokerUserProfileBulkImport:
      properties:
        items:
          items:
            $ref: '#/components/schemas/BulkBrokerUserProfile'
          maxItems: 100000
          minItems: 1
          type: array
      required:
      - items
      type: object
    PatchedBrokerRelationshipAuto:
      properties:
        broker_from:
          type: integer
        broker_to:
          type: integer
        id:
          readOnly: true
          type: integer
      type: object
    ThirdParty2BaseUserAuto:
      properties:
        id:
          readOnly: true
          type: integer
        main_contact:
          type: boolean
        third_party:
          type: integer
        user:
          type: integer
      required:
      - id
      - third_party
      - user
      type: object
    BrokerTerritoryAuto:
      properties:
        broker:
          type: integer
        id:
          readOnly: true
          type: integer
        location:
          maxLength: 256
          type: string
      required:
      - broker
      - id
      - location
      type: object
    ReducedLeadGenerator:
      description: "Baseclass for Reduced serializers.\n\nWill validate whether the objects exists, and returns the instance in to_internal_value\nSubclasses must implement Meta with at least the model and field attributes\n\nRaises\n------\n    Validations errors if the object doesn't exist\n    OperBadConfigurationException if the model isn't set"
      properties:
        bank_account:
          readOnly: true
          type: string
        company_type:
          allOf:
          - $ref: '#/components/schemas/CompanyType'
          readOnly: true
        fsma_reference:
          readOnly: true
          type:
          - string
          - 'null'
        id:
          type: integer
        name:
          readOnly: true
          type: string
        vat_number:
          readOnly: true
          type: string
      required:
      - bank_account
      - company_type
      - fsma_reference
      - id
      - name
      - vat_number
      type: object
    ListBroker:
      properties:
        addresses:
          items:
            $ref: '#/components/schemas/Profile2Address'
          type: array
        id:
          readOnly: true
          type: integer
        name:
          type: string
      required:
      - addresses
      - id
      - name
      type: object
    BaseUserProfile:
      description: "Moves `UniqueValidator`'s from the validation stage to the save stage.\nIt solves the problem with nested validation for unique fields on update.\nIf you want more details, you can read related issues and articles:\nhttps://github.com/beda-software/drf-writable-nested/issues/1\nhttp://www.django-rest-framework.org/api-guide/validators/#updating-nested-serializers\nExample of usage:\n```\nclass Child(models.Model):\n    field = models.CharField(unique=True)\nclass Parent(models.Model):\n    child = models.ForeignKey('Child')\nclass ChildSerializer(UniqueFieldsMixin, serializers.ModelSerializer):\n    class Meta:\n        model = Child\nclass ParentSerializer(NestedUpdateMixin, serializers.ModelSerializer):\n    child = ChildSerializer()\n    class Meta:\n        model = Parent\n```\nNote: `UniqueFieldsMixin` must be applied only on the serializer\nwhich has unique fields.\nNote: When you are using both mixins\n(`UniqueFieldsMixin` and `NestedCreateMixin` or `NestedUpdateMixin`)\nyou should put `UniqueFieldsMixin` ahead."
      properties:
        birt

# --- truncated at 32 KB (50 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/oper/refs/heads/main/openapi/oper-third-parties-api-openapi.yml