> ## 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 a Card Processing Application

> Get a single card-processing application by its id.

Responds 404 if no application exists with that id (or it belongs to
another tenant).



## OpenAPI

````yaml GET /v1/platform/card-processing/{application_id}
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/{application_id}:
    get:
      tags:
        - card processing
      summary: Get Card Processing
      description: |-
        Get a single card-processing application by its id.

        Responds 404 if no application exists with that id (or it belongs to
        another tenant).
      operationId: read_card_processing_v1_platform_card_processing__application_id__get
      parameters:
        - name: application_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Application Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/CommonResponse_PlatformCardProcessingRead_
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - _AuthenticatedBearer: []
components:
  schemas:
    CommonResponse_PlatformCardProcessingRead_:
      properties:
        status_code:
          type: integer
          title: Status Code
          description: HTTP status code for the response.
        data:
          $ref: '#/components/schemas/PlatformCardProcessingRead'
          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[PlatformCardProcessingRead]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PlatformCardProcessingRead:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        product:
          type: string
          const: card_acquiring
          title: Product
          description: >-
            Public product identifier. Always ``card_acquiring`` for rows
            returned by this surface.
          default: card_acquiring
        user_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: User Id
        kyb_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Kyb Id
          description: >-
            Public ``id`` of the KYB (``compliance_checks``) row this
            application was made against.
        business_legal_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Business Legal Name
        kyb:
          anyOf:
            - $ref: '#/components/schemas/KybRecordRead'
            - type: 'null'
        status:
          type: string
          title: Status
        decline_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Decline Reason
        tokenization_key:
          anyOf:
            - type: string
            - type: 'null'
          title: Tokenization Key
        merchant_info_submitted_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Merchant Info Submitted At
          description: >-
            When the merchant_info packet (supporting documents + volume
            figures) was last submitted. Null when never submitted — lets a
            detail view render the state without a second round-trip.
        submitted_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Submitted At
        approved_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Approved At
        declined_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Declined At
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - status
        - created_at
        - updated_at
      title: PlatformCardProcessingRead
      description: >-
        Platform-realm projection of CardAcquiringRead.


        Wire-identical to CardAcquiringRead: ``product`` is ``"card_acquiring"``

        on every realm. This class used to override it to ``"card_processing"``,

        so the platform and tenant card-processing surfaces returned a different

        product string from the admin one for the same row; that split is gone
        and

        one row now reads the same everywhere.


        Only the ``/card-processing`` URLs and the ``card_processing_*`` error

        codes keep the newer vocabulary — the path is the public route name and

        the codes are rewritten on the platform boundary in ``app/main.py``;

        neither is affected by this field.


        Kept as a distinct name because it is what the platform and tenant
        routes

        and :class:`CardProcessingMerchantRead` are written against, and because

        the two may diverge again.
    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
    KybRecordRead:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        status:
          type: string
          title: Status
        approved_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Approved At
        rejected_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Rejected At
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        decline_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Decline Reason
        user_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: User Id
        subject_email:
          anyOf:
            - type: string
            - type: 'null'
          title: Subject Email
        subject_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Subject Name
        business_legal_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Business Legal Name
        business_ein:
          anyOf:
            - type: string
            - type: 'null'
          title: Business Ein
        business_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Business Type
        dba:
          anyOf:
            - type: string
            - type: 'null'
          title: Dba
        website:
          anyOf:
            - type: string
            - type: 'null'
          title: Website
        registration_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Registration Number
        formation_date:
          anyOf:
            - type: string
            - type: 'null'
          title: Formation Date
        mcc:
          anyOf:
            - type: string
            - type: 'null'
          title: Mcc
        business_description:
          anyOf:
            - type: string
            - type: 'null'
          title: Business Description
        business_email:
          anyOf:
            - type: string
            - type: 'null'
          title: Business Email
        business_phone:
          anyOf:
            - type: string
            - type: 'null'
          title: Business Phone
        phone_country_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Phone Country Code
        address:
          anyOf:
            - type: string
            - type: 'null'
          title: Address
        city:
          anyOf:
            - type: string
            - type: 'null'
          title: City
        state:
          anyOf:
            - type: string
            - type: 'null'
          title: State
        country:
          anyOf:
            - type: string
            - type: 'null'
          title: Country
        zip:
          anyOf:
            - type: string
            - type: 'null'
          title: Zip
        contact_first_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Contact First Name
        contact_last_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Contact Last Name
        contact_email:
          anyOf:
            - type: string
            - type: 'null'
          title: Contact Email
        business_documents:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Business Documents
        ownership:
          anyOf:
            - items:
                $ref: '#/components/schemas/KybBeneficialOwner'
              type: array
            - type: 'null'
          title: Ownership
      type: object
      required:
        - id
        - status
        - created_at
        - updated_at
      title: KybRecordRead
    KybBeneficialOwner:
      properties:
        name:
          type: string
          maxLength: 255
          minLength: 1
          title: Name
          description: Full legal name of the owner.
        role:
          anyOf:
            - type: string
              maxLength: 120
            - type: 'null'
          title: Role
          description: >-
            The owner's role in the business, for example "founder" or
            "director".
        ownership_pct:
          anyOf:
            - type: number
              maximum: 100
              minimum: 0
            - type: 'null'
          title: Ownership Pct
          description: >-
            Share of the business this person owns, as a percentage from 0 to
            100.
      additionalProperties: true
      type: object
      required:
        - name
      title: KybBeneficialOwner
      description: A person who owns part of the business.
  securitySchemes:
    _AuthenticatedBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: /v1/platform/auth/token

````