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

# Get recognized transaction



## OpenAPI

````yaml api-reference/openapi.json get /api/banking/recognized/{recognizedTransactionId}
openapi: 3.0.0
info:
  title: Bigcapital
  description: Financial accounting software
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/banking/recognized/{recognizedTransactionId}:
    get:
      tags:
        - Banking Recognized Transactions
      summary: Get recognized transaction
      operationId: BankingRecognizedTransactionsController_getRecognizedTransaction
      parameters:
        - name: Authorization
          in: header
          description: >-
            Value must be 'Bearer <token>' where <token> is an API key prefixed
            with 'bc_' or a JWT token.
          required: true
          schema:
            type: string
            example: Bearer bc_1234567890abcdef
        - name: organization-id
          in: header
          description: >-
            Required if Authorization is a JWT token. The organization ID to
            operate within.
          required: true
          schema:
            type: string
        - name: recognizedTransactionId
          required: true
          in: path
          description: The ID of the recognized transaction
          schema:
            type: number
      responses:
        '200':
          description: Returns the recognized transaction details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetRecognizedTransactionResponseDto'
        '404':
          description: Recognized transaction not found
components:
  schemas:
    GetRecognizedTransactionResponseDto:
      type: object
      properties:
        uncategorizedTransactionId:
          type: number
          description: The unique identifier of the uncategorized transaction
          example: 123
        referenceNo:
          type: string
          description: The reference number of the transaction
          example: TRX-2024-001
        description:
          type: string
          description: The description of the transaction
          example: 'Payment for invoice #123'
        payee:
          type: string
          description: The payee of the transaction
          example: John Doe
        amount:
          type: number
          description: The amount of the transaction
          example: 1500.75
        formattedAmount:
          type: string
          description: The formatted amount of the transaction
          example: $1,500.75
        date:
          type: string
          description: The date of the transaction
          example: '2024-04-01'
        formattedDate:
          type: string
          description: The formatted date of the transaction
          example: Apr 1, 2024
        assignedAccountId:
          type: number
          description: The assigned account ID
          example: 10
        assignedAccountName:
          type: string
          description: The assigned account name
          example: Bank Account
        assignedAccountCode:
          type: string
          description: The assigned account code
          example: '1001'
        assignedPayee:
          type: string
          description: The assigned payee
          example: Jane Smith
        assignedMemo:
          type: string
          description: The assigned memo
          example: Office supplies
        assignedCategory:
          type: string
          description: The assigned category
          example: Office Expenses
        assignedCategoryFormatted:
          type: string
          description: The formatted assigned category
          example: Other Income
        withdrawal:
          type: number
          description: The withdrawal amount
          example: 500
        deposit:
          type: number
          description: The deposit amount
          example: 1000
        isDepositTransaction:
          type: boolean
          description: Whether this is a deposit transaction
          example: true
        isWithdrawalTransaction:
          type: boolean
          description: Whether this is a withdrawal transaction
          example: false
        formattedDepositAmount:
          type: string
          description: The formatted deposit amount
          example: $1,000.00
        formattedWithdrawalAmount:
          type: string
          description: The formatted withdrawal amount
          example: $500.00
        bankRuleId:
          type: string
          description: The bank rule ID
          example: BR-001
        bankRuleName:
          type: string
          description: The bank rule name
          example: Salary Rule
      required:
        - uncategorizedTransactionId
        - referenceNo
        - description
        - payee
        - amount
        - formattedAmount
        - date
        - formattedDate
        - assignedAccountId
        - assignedAccountName
        - assignedAccountCode
        - assignedPayee
        - assignedMemo
        - assignedCategory
        - assignedCategoryFormatted
        - withdrawal
        - deposit
        - isDepositTransaction
        - isWithdrawalTransaction
        - formattedDepositAmount
        - formattedWithdrawalAmount
        - bankRuleId
        - bankRuleName

````