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

# Submit a Transaction Report

> Use this endpoint to manually trigger the submission of a TRCK002 transaction report to BTG. This is a fallback for reports that were not submitted through the normal automated flow.

**Notes:**
- Submission is accepted for reports in PENDING or ERROR status; ERROR reports are previously failed submissions an operator can retry.
- This endpoint is idempotent: reports that are already PROCESSING or CONFIRMED are left unchanged.
- Submission is accepted for asynchronous processing; the final outcome (CONFIRMED/ERROR) is delivered later via the BTG CAMT025 status webhook.



## OpenAPI

````yaml en/openapi/v3-current/indirect-pix.yaml POST /v1/transaction-reports/{id}/submit
openapi: 3.0.3
info:
  title: Plugin BR Pix Indirect - Complete API
  description: |
    Complete API for Brazilian Pix instant payment system including
    Pix key dictionary operations, QR code generation/decoding, transactions and
    transaction limits.
  version: 1.7.6
servers:
  - url: https://plugin-pix-indirect.api.lerian.net
security:
  - bearerAuth: []
paths:
  /v1/transaction-reports/{id}/submit:
    post:
      tags:
        - Transaction Reports API
      summary: Submit a Transaction Report
      description: >-
        Use this endpoint to manually trigger the submission of a TRCK002
        transaction report to BTG. This is a fallback for reports that were not
        submitted through the normal automated flow.


        **Notes:**

        - Submission is accepted for reports in PENDING or ERROR status; ERROR
        reports are previously failed submissions an operator can retry.

        - This endpoint is idempotent: reports that are already PROCESSING or
        CONFIRMED are left unchanged.

        - Submission is accepted for asynchronous processing; the final outcome
        (CONFIRMED/ERROR) is delivered later via the BTG CAMT025 status webhook.
      parameters:
        - name: id
          in: path
          description: Transaction Report ID (UUID format)
          required: true
          schema:
            type: string
          example: 019cf6ef-e418-7ced-80c0-7b9816faa798
      responses:
        '202':
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionReportSubmitOutput'
        '400':
          description: Malformed transaction report ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFormat'
        '404':
          description: Transaction report not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFormat'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFormat'
      security:
        - bearerAuth: []
components:
  schemas:
    TransactionReportSubmitOutput:
      properties:
        id:
          example: 550e8400-e29b-41d4-a716-446655440000
          type: string
        status:
          example: PROCESSING
          type: string
      required:
        - id
        - status
      type: object
    ErrorFormat:
      type: object
      description: The response message error.
      required:
        - code
        - title
        - message
      properties:
        code:
          type: string
          description: A unique, stable identifier for the error.
        title:
          type: string
          description: A brief summary of the issue.
        message:
          type: string
          description: Detailed guidance for resolving the error.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````