Reporting

Submit a French cross-border report

Submit a French e-reporting declaration for an operation with a business established outside France.

Submit a French e-reporting declaration for an operation with a business established outside France. These invoices are not exchanged over the French e-invoicing network, so their data is reported to the French tax administration instead. You do not need to create or submit a regulatory file yourself.

Use an invoice report for a single cross-border invoice or credit note. Report every such document; the buyer must not be established in France. Buyers in the European Union are identified by their VAT number, buyers elsewhere by their country and name.

Use a payment report for a payment received on a cross-border invoice. The invoice has to be reported before its payment can be, and the payment report refers back to it by invoiceNumber. Amounts on a payment report include VAT. Payment reports are only accepted for companies registered with VAT due on payment.

The company must be registered for French e-reporting first, through PUT /:companyId/reporting/fr/declarant. Reports for playground and test-network teams are recorded but not filed.

Choose a new, unique reference for every report, including corrections and cancellations. Retrying the exact same request with the same reference is safe: it returns the report filed the first time instead of filing a second one. A correction or cancellation acts on the report identified by the data in the request (the day and category of a daily total, or the document number of an invoice) and carries the optional action field.

A submitted report is recorded alongside your sent documents and counts towards your document quota.

POST
/api/v1/{companyId}/reporting/fr/b2bi
AuthorizationBasic <token>

Basic API key authentication. Create a new API key and secret in the Recommand dashboard.

In: header

Path Parameters

companyId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Reports one invoice or credit note issued to a business established outside France. These operations are not exchanged over the French e-invoicing network, so they are reported to the French tax administration instead. The reporting company must carry its own French VAT number as well as its SIREN; cross-border reports identify the seller by both.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://app.recommand.eu/api/v1/string/reporting/fr/b2bi" \  -H "Content-Type: application/json" \  -d '{    "reference": "EREPORT-INV-2026-000431",    "type": "invoice",    "documentNumber": "INV-2026-000431",    "issueDate": "2026-01-15",    "buyer": {      "name": "Rossi Forniture S.r.l.",      "country": "IT"    },    "taxExclusiveAmount": "10000.00",    "taxAmount": "0.00",    "vatBreakdown": [      {        "percentage": "0.00",        "taxableAmount": "10000.00",        "taxAmount": "0.00",        "category": "K"      }    ]  }'
{
  "success": true,
  "id": "string",
  "duplicate": true
}
{
  "success": false,
  "errors": {
    "property1": [
      "string"
    ],
    "property2": [
      "string"
    ]
  },
  "invalidInputDetails": [
    {
      "path": "string",
      "message": "string",
      "unionErrors": [
        [
          {
            "path": "string",
            "message": "string"
          }
        ]
      ]
    }
  ]
}
{
  "success": false,
  "errors": {
    "property1": [
      "string"
    ],
    "property2": [
      "string"
    ]
  }
}
{
  "success": false,
  "errors": {
    "property1": [
      "string"
    ],
    "property2": [
      "string"
    ]
  }
}