/api/accounting/bank-reconciliations: post: tags: [Accounting, Bank Reconciliations] summary: Crée un nouveau rapprochement bancaire description: Crée un nouveau rapprochement bancaire requestBody: required: true content: application/json: schema: type: object required: - accountId - bankAccount - statementDate - openingBalance - closingBalance properties: accountId: type: string bankAccount: type: string statementDate: type: string format: date openingBalance: type: number closingBalance: type: number notes: type: string responses: 201: description: Rapprochement créé avec succès 400: description: Données invalides 401: description: Non autorisé 500: description: Erreur serveur
Swagger
/api/accounting/bank-reconciliations: post: tags: [Accounting, Bank Reconciliations] summary: Crée un nouveau rapprochement bancaire description: Crée un nouveau rapprochement bancaire requestBody: required: true content: application/json: schema: type: object required: - accountId - bankAccount - statementDate - openingBalance - closingBalance properties: accountId: type: string bankAccount: type: string statementDate: type: string format: date openingBalance: type: number closingBalance: type: number notes: type: string responses: 201: description: Rapprochement créé avec succès 400: description: Données invalides 401: description: Non autorisé 500: description: Erreur serveur