Push payees
curl --request POST \
--url https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
[
{
"clientPayeeId": "<string>",
"names": [
{
"value": "<string>",
"specification": "<string>"
}
],
"countryCode": "DE",
"addresses": [
{
"countryCode": "DE",
"addressFree": "<string>"
}
],
"emails": [
"<string>"
],
"webPages": [
"<string>"
],
"taxes": [
{
"number": "<string>",
"issuedBy": "DE",
"specification": "<string>"
}
],
"accounts": [
{
"number": "DE89370400440532013000",
"countryCode": "DE",
"specification": "<string>"
}
]
}
]
'import requests
url = "https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees"
payload = [
{
"clientPayeeId": "<string>",
"names": [
{
"value": "<string>",
"specification": "<string>"
}
],
"countryCode": "DE",
"addresses": [
{
"countryCode": "DE",
"addressFree": "<string>"
}
],
"emails": ["<string>"],
"webPages": ["<string>"],
"taxes": [
{
"number": "<string>",
"issuedBy": "DE",
"specification": "<string>"
}
],
"accounts": [
{
"number": "DE89370400440532013000",
"countryCode": "DE",
"specification": "<string>"
}
]
}
]
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify([
{
clientPayeeId: '<string>',
names: [{value: '<string>', specification: '<string>'}],
countryCode: 'DE',
addresses: [{countryCode: 'DE', addressFree: '<string>'}],
emails: ['<string>'],
webPages: ['<string>'],
taxes: [{number: '<string>', issuedBy: 'DE', specification: '<string>'}],
accounts: [
{number: 'DE89370400440532013000', countryCode: 'DE', specification: '<string>'}
]
}
])
};
fetch('https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees', 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/cesop/v1/submissions/{submissionId}/payees",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
[
'clientPayeeId' => '<string>',
'names' => [
[
'value' => '<string>',
'specification' => '<string>'
]
],
'countryCode' => 'DE',
'addresses' => [
[
'countryCode' => 'DE',
'addressFree' => '<string>'
]
],
'emails' => [
'<string>'
],
'webPages' => [
'<string>'
],
'taxes' => [
[
'number' => '<string>',
'issuedBy' => 'DE',
'specification' => '<string>'
]
],
'accounts' => [
[
'number' => 'DE89370400440532013000',
'countryCode' => 'DE',
'specification' => '<string>'
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees"
payload := strings.NewReader("[\n {\n \"clientPayeeId\": \"<string>\",\n \"names\": [\n {\n \"value\": \"<string>\",\n \"specification\": \"<string>\"\n }\n ],\n \"countryCode\": \"DE\",\n \"addresses\": [\n {\n \"countryCode\": \"DE\",\n \"addressFree\": \"<string>\"\n }\n ],\n \"emails\": [\n \"<string>\"\n ],\n \"webPages\": [\n \"<string>\"\n ],\n \"taxes\": [\n {\n \"number\": \"<string>\",\n \"issuedBy\": \"DE\",\n \"specification\": \"<string>\"\n }\n ],\n \"accounts\": [\n {\n \"number\": \"DE89370400440532013000\",\n \"countryCode\": \"DE\",\n \"specification\": \"<string>\"\n }\n ]\n }\n]")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("[\n {\n \"clientPayeeId\": \"<string>\",\n \"names\": [\n {\n \"value\": \"<string>\",\n \"specification\": \"<string>\"\n }\n ],\n \"countryCode\": \"DE\",\n \"addresses\": [\n {\n \"countryCode\": \"DE\",\n \"addressFree\": \"<string>\"\n }\n ],\n \"emails\": [\n \"<string>\"\n ],\n \"webPages\": [\n \"<string>\"\n ],\n \"taxes\": [\n {\n \"number\": \"<string>\",\n \"issuedBy\": \"DE\",\n \"specification\": \"<string>\"\n }\n ],\n \"accounts\": [\n {\n \"number\": \"DE89370400440532013000\",\n \"countryCode\": \"DE\",\n \"specification\": \"<string>\"\n }\n ]\n }\n]")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "[\n {\n \"clientPayeeId\": \"<string>\",\n \"names\": [\n {\n \"value\": \"<string>\",\n \"specification\": \"<string>\"\n }\n ],\n \"countryCode\": \"DE\",\n \"addresses\": [\n {\n \"countryCode\": \"DE\",\n \"addressFree\": \"<string>\"\n }\n ],\n \"emails\": [\n \"<string>\"\n ],\n \"webPages\": [\n \"<string>\"\n ],\n \"taxes\": [\n {\n \"number\": \"<string>\",\n \"issuedBy\": \"DE\",\n \"specification\": \"<string>\"\n }\n ],\n \"accounts\": [\n {\n \"number\": \"DE89370400440532013000\",\n \"countryCode\": \"DE\",\n \"specification\": \"<string>\"\n }\n ]\n }\n]"
response = http.request(request)
puts response.read_body[
{
"errors": [
{
"fields": [
"iban"
],
"code": 51,
"message": "<string>"
}
],
"clientPayeeId": "<string>"
}
][
{
"errors": [
{
"fields": [
"iban"
],
"code": 51,
"message": "<string>"
}
],
"clientPayeeId": "<string>"
}
][
{
"errors": [
{
"fields": [
"iban"
],
"code": 51,
"message": "<string>"
}
],
"clientPayeeId": "<string>"
}
]Payees
Push payees
Persist a batch of payees under a submission.
POST
/
reports
/
cesop
/
v1
/
submissions
/
{submissionId}
/
payees
Push payees
curl --request POST \
--url https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
[
{
"clientPayeeId": "<string>",
"names": [
{
"value": "<string>",
"specification": "<string>"
}
],
"countryCode": "DE",
"addresses": [
{
"countryCode": "DE",
"addressFree": "<string>"
}
],
"emails": [
"<string>"
],
"webPages": [
"<string>"
],
"taxes": [
{
"number": "<string>",
"issuedBy": "DE",
"specification": "<string>"
}
],
"accounts": [
{
"number": "DE89370400440532013000",
"countryCode": "DE",
"specification": "<string>"
}
]
}
]
'import requests
url = "https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees"
payload = [
{
"clientPayeeId": "<string>",
"names": [
{
"value": "<string>",
"specification": "<string>"
}
],
"countryCode": "DE",
"addresses": [
{
"countryCode": "DE",
"addressFree": "<string>"
}
],
"emails": ["<string>"],
"webPages": ["<string>"],
"taxes": [
{
"number": "<string>",
"issuedBy": "DE",
"specification": "<string>"
}
],
"accounts": [
{
"number": "DE89370400440532013000",
"countryCode": "DE",
"specification": "<string>"
}
]
}
]
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify([
{
clientPayeeId: '<string>',
names: [{value: '<string>', specification: '<string>'}],
countryCode: 'DE',
addresses: [{countryCode: 'DE', addressFree: '<string>'}],
emails: ['<string>'],
webPages: ['<string>'],
taxes: [{number: '<string>', issuedBy: 'DE', specification: '<string>'}],
accounts: [
{number: 'DE89370400440532013000', countryCode: 'DE', specification: '<string>'}
]
}
])
};
fetch('https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees', 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/cesop/v1/submissions/{submissionId}/payees",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
[
'clientPayeeId' => '<string>',
'names' => [
[
'value' => '<string>',
'specification' => '<string>'
]
],
'countryCode' => 'DE',
'addresses' => [
[
'countryCode' => 'DE',
'addressFree' => '<string>'
]
],
'emails' => [
'<string>'
],
'webPages' => [
'<string>'
],
'taxes' => [
[
'number' => '<string>',
'issuedBy' => 'DE',
'specification' => '<string>'
]
],
'accounts' => [
[
'number' => 'DE89370400440532013000',
'countryCode' => 'DE',
'specification' => '<string>'
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees"
payload := strings.NewReader("[\n {\n \"clientPayeeId\": \"<string>\",\n \"names\": [\n {\n \"value\": \"<string>\",\n \"specification\": \"<string>\"\n }\n ],\n \"countryCode\": \"DE\",\n \"addresses\": [\n {\n \"countryCode\": \"DE\",\n \"addressFree\": \"<string>\"\n }\n ],\n \"emails\": [\n \"<string>\"\n ],\n \"webPages\": [\n \"<string>\"\n ],\n \"taxes\": [\n {\n \"number\": \"<string>\",\n \"issuedBy\": \"DE\",\n \"specification\": \"<string>\"\n }\n ],\n \"accounts\": [\n {\n \"number\": \"DE89370400440532013000\",\n \"countryCode\": \"DE\",\n \"specification\": \"<string>\"\n }\n ]\n }\n]")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("[\n {\n \"clientPayeeId\": \"<string>\",\n \"names\": [\n {\n \"value\": \"<string>\",\n \"specification\": \"<string>\"\n }\n ],\n \"countryCode\": \"DE\",\n \"addresses\": [\n {\n \"countryCode\": \"DE\",\n \"addressFree\": \"<string>\"\n }\n ],\n \"emails\": [\n \"<string>\"\n ],\n \"webPages\": [\n \"<string>\"\n ],\n \"taxes\": [\n {\n \"number\": \"<string>\",\n \"issuedBy\": \"DE\",\n \"specification\": \"<string>\"\n }\n ],\n \"accounts\": [\n {\n \"number\": \"DE89370400440532013000\",\n \"countryCode\": \"DE\",\n \"specification\": \"<string>\"\n }\n ]\n }\n]")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "[\n {\n \"clientPayeeId\": \"<string>\",\n \"names\": [\n {\n \"value\": \"<string>\",\n \"specification\": \"<string>\"\n }\n ],\n \"countryCode\": \"DE\",\n \"addresses\": [\n {\n \"countryCode\": \"DE\",\n \"addressFree\": \"<string>\"\n }\n ],\n \"emails\": [\n \"<string>\"\n ],\n \"webPages\": [\n \"<string>\"\n ],\n \"taxes\": [\n {\n \"number\": \"<string>\",\n \"issuedBy\": \"DE\",\n \"specification\": \"<string>\"\n }\n ],\n \"accounts\": [\n {\n \"number\": \"DE89370400440532013000\",\n \"countryCode\": \"DE\",\n \"specification\": \"<string>\"\n }\n ]\n }\n]"
response = http.request(request)
puts response.read_body[
{
"errors": [
{
"fields": [
"iban"
],
"code": 51,
"message": "<string>"
}
],
"clientPayeeId": "<string>"
}
][
{
"errors": [
{
"fields": [
"iban"
],
"code": 51,
"message": "<string>"
}
],
"clientPayeeId": "<string>"
}
][
{
"errors": [
{
"fields": [
"iban"
],
"code": 51,
"message": "<string>"
}
],
"clientPayeeId": "<string>"
}
]Each payee carries your own
clientPayeeId, echoed back in the result. It is the only key you use to attach payments and to update or delete the payee later, and it must be unique within the submission. Send the optional Idempotency-Key header to make a retried batch safe.Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Headers
Client-provided idempotency key.
Maximum string length:
255Path Parameters
Body
application/json
Your own id for this payee. Required and echoed back in the result to correlate it.
Maximum string length:
100Required array length:
1 - 2147483647 elementsShow child attributes
Show child attributes
Minimum string length:
1Example:
"DE"
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Payee representative (optional)
Show child attributes
Show child attributes
Last modified on July 22, 2026
⌘I