curl --request GET \
--url https://api.invopop.com/apps/gov-fr/v1/reports/{silo_entry_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.invopop.com/apps/gov-fr/v1/reports/{silo_entry_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.invopop.com/apps/gov-fr/v1/reports/{silo_entry_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.invopop.com/apps/gov-fr/v1/reports/{silo_entry_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.invopop.com/apps/gov-fr/v1/reports/{silo_entry_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.invopop.com/apps/gov-fr/v1/reports/{silo_entry_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.invopop.com/apps/gov-fr/v1/reports/{silo_entry_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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"
}
},
{
"kind": "py",
"cadence": "monthly",
"open_period_start": "2026-07-01",
"open_period_end": "2026-07-31",
"next_due_period_start": "2026-06-01",
"next_due_period_end": "2026-06-30",
"next_due_deadline": "2026-07-10T23:59:59+02:00",
"last_period_end": "",
"last_filed_period": null
}
]
}Fetch e-reporting summary
Returns the current Flux 10 e-reporting status for the party identified by the silo entry, one block per report kind:
tx— transactions.py— payments.
curl --request GET \
--url https://api.invopop.com/apps/gov-fr/v1/reports/{silo_entry_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.invopop.com/apps/gov-fr/v1/reports/{silo_entry_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.invopop.com/apps/gov-fr/v1/reports/{silo_entry_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.invopop.com/apps/gov-fr/v1/reports/{silo_entry_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.invopop.com/apps/gov-fr/v1/reports/{silo_entry_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.invopop.com/apps/gov-fr/v1/reports/{silo_entry_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.invopop.com/apps/gov-fr/v1/reports/{silo_entry_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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"
}
},
{
"kind": "py",
"cadence": "monthly",
"open_period_start": "2026-07-01",
"open_period_end": "2026-07-31",
"next_due_period_start": "2026-06-01",
"next_due_period_end": "2026-06-30",
"next_due_deadline": "2026-07-10T23:59:59+02:00",
"last_period_end": "",
"last_filed_period": null
}
]
}open_period_* is the window currently being accumulated against (what the party is filling right now); next_due_period_* is the window the platform will generate a report for next, together with its filing next_due_deadline. After a report is generated for the open window, next_due_* advances while open_* stays put until the calendar rolls over.
Always returns 200. When the party exists but reporting was never enabled (or was disabled), enabled is false and kinds is empty — this lets callers tell “party not found” (404) apart from “party not reporting”.Authorizations
Authenticate using a valid Invopop enrollment token in the Bearer
scheme.
Example: Authorization: Bearer <token>
Path Parameters
ID of the org.Party silo entry being onboarded.
"5b45453c-cdd0-11ed-afa1-0242ac120002"
Response
Reporting summary for the party.
A party's Flux 10 e-reporting status across all report kinds.
Silo entry (party) the summary is for.
"5b45453c-cdd0-11ed-afa1-0242ac120002"
9-digit French SIREN of the party.
"123456789"
Whether e-reporting is currently enabled for the party.
true
Per-kind status blocks. Empty when reporting is not enabled.
Show child attributes
Show child attributes
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.
real_normal_monthly, real_normal_quarterly, simplified, vat_franchise "real_normal_monthly"
Was this page helpful?