v1

latestOpenAPI 3.0.0Apache 2.02026-07-267057121.5 KB

Fetch the e-reporting summary for a party

Returns the current Flux 10 e-reporting status for the party identified by the silo entry, one block per report kind:

  • txtransactions.
  • pypayments.
get/apps/gov-fr/v1/reports/{silo_entry_id}

Path parameters

silo_entry_idstring required
Example:5b45453c-cdd0-11ed-afa1-0242ac120002

ID of the org.Party silo entry being onboarded.

Response

Reporting summary for the party.

silo_entry_idstring required

Silo entry (party) the summary is for.

sirenstring required

9-digit French SIREN of the party.

enabledboolean required

Whether e-reporting is currently enabled for the party.

regime'real_normal_monthly' | 'real_normal_quarterly' | 'simplified' | 'vat_franchise'

VAT regime driving the reporting cadences. Omitted when reporting is not enabled.

  • real_normal_monthly - Réel normal mensuel.
  • real_normal_quarterly - Réel normal trimestriel.
  • simplified - Réel simplifié.
  • vat_franchise - Franchise en base.

Example response

{
  "silo_entry_id": "5b45453c-cdd0-11ed-afa1-0242ac120002",
  "siren": "123456789",
  "enabled": true,
  "regime": "real_normal_monthly",
  "kinds": [
    {
      "kind": "tx",
      "cadence": "ten_day",
      "open_period_start": "2026-07-01",
      "open_period_end": "2026-07-10",
      "next_due_period_start": "2026-06-21",
      "next_due_period_end": "2026-06-30",
      "next_due_deadline": "2026-07-10T23:59:59+02:00",
      "last_period_end": "2026-06-20",
      "last_filed_period": {
        "id": "018f9e2a-7c31-7a10-9b44-2f9d1e6c8a01",
        "siren": "123456789",
        "flux_kind": "tx",
        "role": "seller",
        "period_start": "2026-06-11",
        "period_end": "2026-06-20",
        "sequence": 1,
        "status": "filed",
        "flux_code": "PPF206_1025_000123",
        "ack_ref": "300",
        "submitted_at": "2026-06-21T08:15:00Z",
        "created_at": "2026-06-21T08:00:00Z",
        "updated_at": "2026-06-21T08:20:00Z"
      }
    }
  ]
}