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

# Detalle de una declaración

Códigos del formulario y estado de una declaración.


## OpenAPI

````yaml GET /f29-declarations/{id}/
openapi: 3.0.3
info:
  title: API Contable de Abacco
  version: 1.0.0
  description: >-
    Comprobantes contables y F29. Autenticación Bearer (token de sesión de la
    plataforma).
servers:
  - url: https://api.abacco.ai/api/accounting
    description: Producción
security:
  - bearerAuth: []
paths:
  /f29-declarations/{id}/:
    get:
      tags:
        - Impuestos
      summary: Detalle de una declaración (códigos del formulario)
      operationId: getF29Declaration
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/F29Declaration'
components:
  schemas:
    F29Declaration:
      type: object
      properties:
        id:
          type: string
        client_name:
          type: string
        client_tax_id:
          type: string
        period_year:
          type: integer
        period_month:
          type: integer
        status:
          type: string
          enum:
            - draft
            - sent
            - paid
        fields:
          type: object
          additionalProperties: true
          description: 'Códigos del formulario {sii_code: value}'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````