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

# Get Bulk Upload Job Status

> Returns the status and results of a bulk beneficiary upload job



## OpenAPI

````yaml https://killb.app/api/v2/open-api-json get /api/v2/accounts/bulk/status/{jobId}
openapi: 3.0.0
info:
  title: Tarantino V2 API
  description: Tarantino V2 REST API documentation
  version: 2.0.0
  contact: {}
servers:
  - url: https://sandbox.killb.app
    description: Sandbox
  - url: https://killb.app
    description: Production
security: []
tags: []
paths:
  /api/v2/accounts/bulk/status/{jobId}:
    get:
      tags:
        - Account
      summary: Get Bulk Upload Job Status
      description: Returns the status and results of a bulk beneficiary upload job
      operationId: AccountController_getBulkUploadStatus
      parameters:
        - name: jobId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkBeneficiaryStatusDto'
        '400':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '500':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      security:
        - jwt: []
components:
  schemas:
    BulkBeneficiaryStatusDto:
      type: object
      properties:
        jobId:
          type: string
          example: e8d74b2f-86df-43b0-a9d9-72055a6b0432
        status:
          type: string
          enum:
            - PENDING
            - PROCESSING
            - COMPLETED
            - FAILED
          example: COMPLETED
        totalRows:
          type: number
          example: 100
        processedRows:
          type: number
          example: 100
        successCount:
          type: number
          example: 98
        errorCount:
          type: number
          example: 2
        results:
          type: array
          items:
            $ref: '#/components/schemas/BulkBeneficiaryResultDto'
        resultsFileUrl:
          type: string
          example: https://storage.example.com/results/job-e8d74b2f.xlsx
        error:
          type: string
          example: Partial failure during processing
        createdAt:
          format: date-time
          type: string
          example: '2026-04-23T00:38:08.439Z'
        updatedAt:
          format: date-time
          type: string
          example: '2026-04-23T00:38:08.439Z'
      required:
        - jobId
        - status
        - totalRows
        - processedRows
        - successCount
        - errorCount
        - results
        - createdAt
        - updatedAt
    BadRequestResponse:
      type: object
      properties:
        errorCode:
          type: string
          example: API_USER.0001
        arguments:
          type: array
          items:
            $ref: '#/components/schemas/BadRequestArgument'
        message:
          example:
            - User not found
            - Account not found
          type: array
          items:
            type: string
        statusCode:
          type: string
          example: '400'
      required:
        - errorCode
        - arguments
        - message
        - statusCode
    InternalServerErrorResponse:
      type: object
      properties:
        statusCode:
          type: string
          example: '500'
        message:
          example:
            - Internal server error
          type: array
          items:
            type: string
      required:
        - statusCode
        - message
    BulkBeneficiaryResultDto:
      type: object
      properties:
        rowNumber:
          type: number
          example: 2
        status:
          type: string
          enum:
            - SUCCESS
            - ERROR
          example: SUCCESS
        accountId:
          type: string
          example: e8d74b2f-86df-43b0-a9d9-72055a6b0432
        complianceUrl:
          type: string
          example: https://compliance.example.com/review/e8d74b2f
        error:
          type: string
          example: Account already exists for this user
        sheetName:
          type: string
          example: Sheet1
        originalRowData:
          $ref: '#/components/schemas/BulkBeneficiaryRowDto'
      required:
        - rowNumber
        - status
    BadRequestArgument:
      type: object
      properties:
        key:
          type: string
          example: email
        value:
          type: string
          example: invalid@email.com
      required:
        - key
        - value
    BulkBeneficiaryRowDto:
      type: object
      properties:
        rowNumber:
          type: number
          description: Row number in Excel file
          example: 2
        entityType:
          type: string
          enum:
            - PERSON
            - COMPANY
          example: PERSON
        firstName:
          type: string
          example: John
        middleName:
          type: string
          example: Carlos
        lastName:
          type: string
          example: Doe
        companyName:
          type: string
          example: Acme Corp
        email:
          type: string
          example: john.doe@example.com
        phone:
          type: string
          example: '+576015555555'
        accountType:
          type: string
          enum:
            - PSE
            - ACH
            - ACH_HN
            - ACH_SV
            - ACH_NI
            - ACH_GT
            - ACH_PA
            - ACH_BO
            - WIRE
            - WALLET
            - COELSA
            - BREB
            - SPEI
            - PIX
            - CCI
            - CUSTODIAL
            - TRANSFIYA
            - SWIFT
            - SPI
            - SPI_PY
            - SPI_DO
            - SINPE
          example: PSE
        personDocumentType:
          type: string
          enum:
            - PASSPORT
            - DRIVER_LICENSE
            - NUIP
            - RFC
            - SSN
            - CURP
            - CPF
            - INE
            - IFE
            - DNI
            - DUI
            - NIT
            - RUT
            - CHINESE_ID
            - BOLIVIAN_ID
            - CE
          example: PASSPORT
        companyDocumentType:
          type: string
          enum:
            - NIT
            - EIN
            - CNPJ
            - RFC
            - CUIT
            - USCC
            - RUT
            - CRN
          example: NIT
        documentNumber:
          type: string
          example: '123456789'
        documentIssuedCountryCode:
          type: string
          example: CO
        bankCode:
          type: string
          example: '001'
        accountNumber:
          type: string
          example: '1234567890'
        clabe:
          type: string
          example: CLABE123456789012345
        bankAccountType:
          type: string
          enum:
            - savings
            - checking
          example: savings
        countryCode:
          type: string
          example: CO
        externalId:
          type: string
          example: external-id-123
        routingNumber:
          type: string
          example: '021000021'
        bankName:
          type: string
          example: Banco de Bogotá
        swiftCode:
          type: string
          example: BOFAUS3N
        iban:
          type: string
          description: >-
            IBAN. ACH_SV (El Salvador), ACH_HN (Honduras) and ACH_NI (Nicaragua)
            use accountNumber, bankCode and type instead.
          example: GB29NWBK60161331926819
        address:
          type: string
          example: 123 Main St, Bogotá, Colombia
        currency:
          type: string
          example: USDC
        network:
          type: string
          example: POLYGON
        cvu:
          type: string
          example: '0000003100025695'
        aliasType:
          type: string
          enum:
            - NATIONAL_ID
            - PHONE
            - EMAIL
            - ALPHANUMERIC
            - BUSINESS_ID
          example: NATIONAL_ID
        alias:
          type: string
          example: john.doe
        bankAddressStreet1:
          type: string
          example: 100 Wall Street
        bankAddressStreet2:
          type: string
          example: Suite 500
        bankAddressCity:
          type: string
          example: New York
        bankAddressState:
          type: string
          example: NY
        bankAddressZipCode:
          type: string
          example: '10005'
        bankAddressCountryCode:
          type: string
          example: US
        account:
          type: string
          example: '3001234567'
        transfiyaAccountType:
          type: string
          example: SAVINGS
        clabeType:
          type: string
          example: CLABE
        pixKeyType:
          type: string
          enum:
            - CPF
            - CNPJ
            - EMAIL
            - PHONE
            - RANDOM
          example: CPF
        pixKey:
          type: string
          example: '12345678901'
        cci:
          type: string
          example: '12345678901234567890'
          description: 20-digit Peruvian CCI
      required:
        - rowNumber
        - entityType
        - email
        - phone
        - accountType
        - documentNumber
        - documentIssuedCountryCode
        - countryCode
  securitySchemes:
    jwt:
      flows:
        implicit:
          authorizationUrl: /auth/login
          scopes: {}
      type: oauth2
      x-google-issuer: INTERNAL_PRODUCTION
      x-google-audiences: TARANTINO_API
      x-google-jwks_uri: https://storage.googleapis.com/public_keys_jwk/public-prod.json

````