List submissions
curl --request GET \
--url https://api.rrc.dev.finventi.com/reports/mai55/v1/submissions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.rrc.dev.finventi.com/reports/mai55/v1/submissions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.rrc.dev.finventi.com/reports/mai55/v1/submissions', 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.rrc.dev.finventi.com/reports/mai55/v1/submissions",
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.rrc.dev.finventi.com/reports/mai55/v1/submissions"
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.rrc.dev.finventi.com/reports/mai55/v1/submissions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rrc.dev.finventi.com/reports/mai55/v1/submissions")
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[
{
"submissionId": "6f1b0c1e-6c0b-4c39-9a2e-1d9d2f0f7a11",
"type": "SLIK",
"reportingYear": 2025,
"kind": "CORRECTION",
"status": "DRAFT"
},
{
"submissionId": "b3c9a4d2-1f77-4f0e-8d3a-5c6b7e8f9a01",
"type": "SIPL",
"reportingYear": 2025,
"kind": "SUBMISSION",
"status": "REPORTED"
}
]Submissions
List submissions
List the submissions and corrections you have opened.
GET
/
reports
/
mai55
/
v1
/
submissions
List submissions
curl --request GET \
--url https://api.rrc.dev.finventi.com/reports/mai55/v1/submissions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.rrc.dev.finventi.com/reports/mai55/v1/submissions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.rrc.dev.finventi.com/reports/mai55/v1/submissions', 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.rrc.dev.finventi.com/reports/mai55/v1/submissions",
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.rrc.dev.finventi.com/reports/mai55/v1/submissions"
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.rrc.dev.finventi.com/reports/mai55/v1/submissions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rrc.dev.finventi.com/reports/mai55/v1/submissions")
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[
{
"submissionId": "6f1b0c1e-6c0b-4c39-9a2e-1d9d2f0f7a11",
"type": "SLIK",
"reportingYear": 2025,
"kind": "CORRECTION",
"status": "DRAFT"
},
{
"submissionId": "b3c9a4d2-1f77-4f0e-8d3a-5c6b7e8f9a01",
"type": "SIPL",
"reportingYear": 2025,
"kind": "SUBMISSION",
"status": "REPORTED"
}
]Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Query Parameters
Filter to one sub-report. Omitted, every sub-report you hold the permission for is listed.
Available options:
SIPL, SLIK, SKIS Required range:
2016 <= x <= 2100Response
200 - application/json
OK
Which sub-report this submission carries
Available options:
SIPL, SLIK, SKIS Example:
"SLIK"
Example:
2025
SUBMISSION reports a year not yet reported for this sub-report; CORRECTION amends what was already reported for it.
Available options:
SUBMISSION, CORRECTION High-level lifecycle status of a submission
Available options:
DRAFT, PROCESSING, ACTION_REQUIRED, REPORTED, FAILED Last modified on September 1, 2026