ETASCOM CRM V3 - Documentation API
    Preparing search index...
    • POST(
          request: NextRequest,
      ): Promise<
          | NextResponse<{ error: string }>
          | NextResponse<
              { account: { code: string; id: string; name: string }; lines: {}[] } & {},
          >,
      >

      Parameters

      • request: NextRequest

      Returns Promise<
          | NextResponse<{ error: string }>
          | NextResponse<
              { account: { code: string; id: string; name: string }; lines: {}[] } & {},
          >,
      >

      /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