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

# Add a manual transaction to a bank-feed account

> Creates a manually entered transaction on a connected account — for repairing feed gaps (e.g. a cancelled transfer's missing return leg) so a reconciliation can tie out. Signed with the feed convention: positive = money out of the account, negative = money in. The row starts UNSTAGED and is categorized/confirmed like any feed transaction; dates on or before the account's opening date stay below the books-start line.



## OpenAPI

````yaml /openapi.json post /api/financial-accounts/{id}/transactions
openapi: 3.1.0
info:
  title: Equated API
  version: 1.0.0
  description: >-
    Agent-facing accounting API. Authenticate with a bearer token issued from
    Settings → API Tokens, or via the in-app session cookie when called from the
    web client.
servers:
  - url: https://app.equated.co
    description: API server
security: []
paths:
  /api/financial-accounts/{id}/transactions:
    post:
      tags:
        - Transactions
      summary: Add a manual transaction to a bank-feed account
      description: >-
        Creates a manually entered transaction on a connected account — for
        repairing feed gaps (e.g. a cancelled transfer's missing return leg) so
        a reconciliation can tie out. Signed with the feed convention: positive
        = money out of the account, negative = money in. The row starts UNSTAGED
        and is categorized/confirmed like any feed transaction; dates on or
        before the account's opening date stay below the books-start line.
      parameters:
        - schema:
            type: integer
            minimum: 0
            exclusiveMinimum: true
          required: true
          name: id
          in: path
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                date:
                  type: string
                  pattern: ^\d{4}-\d{2}-\d{2}$
                amount:
                  type: number
                  minimum: -10000000000000
                  exclusiveMinimum: true
                  maximum: 10000000000000
                  exclusiveMaximum: true
                  description: >-
                    Signed, feed convention: positive = money out of the
                    account, negative = money in.
                name:
                  type: string
                  minLength: 1
                  maxLength: 500
                isoCurrencyCode:
                  type: string
                  pattern: ^[A-Za-z]{3}$
              required:
                - date
                - amount
                - name
      responses:
        '200':
          description: Created transaction
          content:
            application/json:
              schema:
                nullable: true
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token issued from the Equated app under Settings → API Tokens.

````