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

# Get Card Processing MID Config

> Get the MID/config bundle for one card-processing merchant.

The lookup is tenant-scoped and accepts the merchant id as a query
parameter, matching the platform integration contract.



## OpenAPI

````yaml GET /v1/platform/card-processing/mid
openapi: 3.1.0
info:
  title: Finogate Platform API v1
  version: 0.1.0
servers:
  - url: https://api-sandbox.finogates.com
    description: Sandbox
  - url: https://api.finogates.com
    description: Production
security: []
tags:
  - name: auth
  - name: users
  - name: payees
  - name: verification
  - name: bank accounts
  - name: card processing
  - name: digital-assets
  - name: international
  - name: fees
  - name: onboarding
  - name: pending-applications
  - name: wallets
  - name: payments
  - name: document mailing
  - name: merchant onboarding
  - name: catalog
  - name: webhooks
  - name: screening
  - name: Platform - File Scanning
  - name: phone-numbers
  - name: sms
  - name: calls
  - name: listings
  - name: Card Transfers
  - name: embed-tokens
paths:
  /v1/platform/card-processing/mid:
    get:
      tags:
        - card processing
      summary: Get Card Processing MID Config
      description: |-
        Get the MID/config bundle for one card-processing merchant.

        The lookup is tenant-scoped and accepts the merchant id as a query
        parameter, matching the platform integration contract.
      operationId: read_card_processing_mid_v1_platform_card_processing_mid_get
      parameters:
        - name: card_acquiring_id
          in: query
          required: true
          schema:
            type: string
            format: uuid
            description: Card-processing merchant id to read the MID config for.
            title: Card Acquiring Id
          description: Card-processing merchant id to read the MID config for.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/CommonResponse_PlatformCardProcessingMidRead_
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - _AuthenticatedBearer: []
components:
  schemas:
    CommonResponse_PlatformCardProcessingMidRead_:
      properties:
        status_code:
          type: integer
          title: Status Code
          description: HTTP status code for the response.
        data:
          $ref: '#/components/schemas/PlatformCardProcessingMidRead'
          description: Payload or error details.
        query_generated_time:
          type: integer
          title: Query Generated Time
          description: >-
            UTC timestamp (milliseconds since epoch) when response was
            generated.
      type: object
      required:
        - status_code
        - data
        - query_generated_time
      title: CommonResponse[PlatformCardProcessingMidRead]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PlatformCardProcessingMidRead:
      properties:
        card_acquiring_id:
          type: string
          format: uuid
          title: Card Acquiring Id
        merchant_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Merchant Id
        descriptor:
          anyOf:
            - type: string
            - type: 'null'
          title: Descriptor
        security_key:
          anyOf:
            - type: string
            - type: 'null'
          title: Security Key
        tokenization_key:
          anyOf:
            - type: string
            - type: 'null'
          title: Tokenization Key
        nmi_webhook_secret:
          anyOf:
            - type: string
            - type: 'null'
          title: Nmi Webhook Secret
      type: object
      required:
        - card_acquiring_id
      title: PlatformCardProcessingMidRead
      description: Narrow platform read for one card-processing MID/config bundle.
    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
  securitySchemes:
    _AuthenticatedBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: /v1/platform/auth/token

````