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

# /realms/{realmId}/organizations/{organizationId}/invoices/{invoiceId}/entries



## OpenAPI

````yaml /api-reference/platform.openapi.json post /realms/{realmId}/organizations/{organizationId}/invoices/{invoiceId}/entries
openapi: 3.0.3
info:
  title: Platform
  version: 1.0.0
  description: >-
    Portão 3 platform API. Generated by tools/openapi from code (routes +
    security) and the hand-written spec (request/response bodies). Confidence
    tiers: generated:typed=17 copied:manual=6 unknown=93.
servers:
  - url: https://api.platform.v2.portao3.com.br/
    description: production
  - url: https://api.platform.dev.3pers.com.br/
    description: development
security:
  - bearerAuth: []
tags:
  - name: Wallets
  - name: Cards
  - name: PIX
  - name: PIX Keys (DICT)
  - name: Boleto
  - name: Transfers
  - name: Batch Payments
  - name: Scheduled Payments
  - name: Transactions & Statements
  - name: Invoices
  - name: Contracts & Deals
  - name: Billing
  - name: Custom Fields
  - name: Notifications
  - name: Files
  - name: Users
  - name: Internal
paths:
  /realms/{realmId}/organizations/{organizationId}/invoices/{invoiceId}/entries:
    post:
      tags:
        - Invoices
      summary: >-
        /realms/{realmId}/organizations/{organizationId}/invoices/{invoiceId}/entries
      operationId: >-
        postRealmsByRealmIdOrganizationsByOrganizationIdInvoicesByInvoiceIdEntries
      parameters:
        - name: realmId
          in: path
          required: true
          schema:
            type: string
        - name: organizationId
          in: path
          required: true
          schema:
            type: string
        - name: invoiceId
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                entries:
                  minItems: 1
                  type: array
                  items:
                    type: object
                    properties:
                      identifier:
                        type: string
                        minLength: 1
                      description:
                        type: string
                      chargeMethod:
                        type: string
                        enum:
                          - INSTANT
                          - LATER
                      amount:
                        type: string
                        minLength: 1
                      productType:
                        type: string
                        enum:
                          - RECURRENT
                          - ONE_TIME
                          - ON_EVENT
                    required:
                      - identifier
                      - chargeMethod
                      - amount
                      - productType
      responses:
        default:
          description: Undocumented response (no code type, no existing spec).
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````