> ## 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 autofill values for categorize transactions



## OpenAPI

````yaml api-reference/openapi.json get /api/banking/uncategorized/autofill
openapi: 3.0.0
info:
  title: Bigcapital
  description: Financial accounting software
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/banking/uncategorized/autofill:
    get:
      tags:
        - Banking Uncategorized Transactions
      summary: Get autofill values for categorize transactions
      operationId: >-
        BankingUncategorizedTransactionsController_getAutofillCategorizeTransaction
      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: uncategorizedTransactionIds
          required: true
          in: query
          description: Uncategorized transaction IDs to get autofill for
          schema:
            type: array
            items: {}
      responses:
        '200':
          description: Returns autofill values for categorize transactions
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/GetAutofillCategorizeTransactionResponseDto
components:
  schemas:
    GetAutofillCategorizeTransactionResponseDto:
      type: object
      properties:
        creditAccountId:
          type: number
          description: Assigned credit/debit account ID from recognition
          example: 10
        debitAccountId:
          type: number
          description: Bank account ID (debit)
          example: 5
        amount:
          type: number
          description: Total amount of uncategorized transactions
          example: -150.5
        formattedAmount:
          type: string
          description: Formatted amount
          example: $150.50
        date:
          type: string
          description: Transaction date
          example: '2024-01-15'
        formattedDate:
          type: string
          description: Formatted date
          example: Jan 15, 2024
        isRecognized:
          type: boolean
          description: Whether the transaction is recognized by a rule
          example: true
        recognizedByRuleId:
          type: number
          description: Bank rule ID that recognized the transaction
          example: 1
        recognizedByRuleName:
          type: string
          description: Bank rule name that recognized the transaction
          example: Salary Rule
        referenceNo:
          type: string
          description: Reference number
          example: REF-001
        transactionType:
          type: string
          description: Transaction type (category)
          example: other_expense
        isDepositTransaction:
          type: boolean
          description: Whether this is a deposit transaction
          example: false
        isWithdrawalTransaction:
          type: boolean
          description: Whether this is a withdrawal transaction
          example: true
        payee:
          type: string
          description: Assigned payee from recognition
        memo:
          type: string
          description: Assigned memo from recognition
      required:
        - amount
        - formattedAmount
        - date
        - formattedDate
        - isRecognized
        - transactionType
        - isDepositTransaction
        - isWithdrawalTransaction

````