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

# Make a request



## OpenAPI

````yaml /openapi_v4_core.json post /v4/core/passthrough
openapi: 3.0.0
info:
  title: Commenda Integrations V4 API
  description: Commenda Integrations — unified accounting, commerce, and CRM API.
  version: 4.0.0
  contact: {}
servers:
  - url: https://api.integrations.commenda.io
    description: Production
security:
  - api_key: []
tags: []
paths:
  /v4/core/passthrough:
    post:
      tags:
        - Passthrough
      summary: Make a request
      operationId: PassthroughController_execute
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PassthroughRequestDTO'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
components:
  schemas:
    PassthroughRequestDTO:
      type: object
      properties:
        company_id:
          type: number
          example: 1234
        data:
          $ref: '#/components/schemas/PassthroughDataDTO'
      required:
        - company_id
        - data
    PassthroughDataDTO:
      type: object
      properties:
        config_id:
          type: string
          example: config_123
        method:
          enum:
            - GET
            - POST
            - PUT
            - PATCH
            - DELETE
          type: string
          example: GET
        path:
          type: string
          description: >-
            Path on the connected platform's own API — the passthrough forwards
            the request there (this example targets QuickBooks).
          example: /v3/company/{realmId}/invoice
        params:
          type: object
          additionalProperties: true
          example:
            page: 1
        headers:
          type: object
          additionalProperties:
            type: string
          example:
            Content-Type: application/json
        data:
          type: object
          example: {}
        response_type:
          type: string
          example: json
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: api_key
      description: Your Commenda Integrations API key, sent in the `api_key` header.

````