> ## 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.

# Apply for Card Processing

> Apply for card processing for one of your users, so that user can
accept card payments. This creates a new application, which Finogate's
team then reviews.



## OpenAPI

````yaml POST /v1/platform/card-processing
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: onboarding
  - name: pending-applications
  - name: wallets
  - name: payments
  - name: catalog
  - name: webhooks
  - name: phone-numbers
  - name: sms
  - name: calls
  - name: listings
  - name: embed-tokens
paths:
  /v1/platform/card-processing:
    post:
      tags:
        - card processing
      summary: Apply for Card Processing
      description: |-
        Apply for card processing for one of your users, so that user can
        accept card payments. This creates a new application, which Finogate's
        team then reviews.
      operationId: create_user_card_processing_v1_platform_card_processing_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PlatformCardProcessingCreate'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommonResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - _AuthenticatedBearer: []
components:
  schemas:
    PlatformCardProcessingCreate:
      properties:
        user_id:
          type: string
          format: uuid
          title: User Id
          description: Public ``id`` of the user the application is for.
        kyb_id:
          type: string
          format: uuid
          title: Kyb Id
          description: >-
            Public ``id`` of the ``compliance_checks`` row with
            ``check_type='kyb'`` to apply against. The row must be approved, not
            deleted, and belong to the target user.
      additionalProperties: false
      type: object
      required:
        - user_id
        - kyb_id
      title: PlatformCardProcessingCreate
      description: |-
        Platform-realm card-processing application request body.

        Unlike :class:`CardAcquiringCreate`, the target ``user_id`` travels in
        the request body (not the path), and the compliance-check reference is
        the shorter public field name ``kyb_id``.
    CommonResponse:
      properties:
        status_code:
          type: integer
          title: Status Code
          description: HTTP status code for the response.
        data:
          title: Data
          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
      description: |-
        Standard response wrapper for single-object responses and errors.

        Generic over the payload type. A route that declares
        ``CommonResponse[SomeModel]`` gets the real ``data`` schema rendered in
        OpenAPI/Swagger; a bare ``CommonResponse`` leaves ``data`` untyped.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````