Update a payee
curl --request PUT \
--url https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees/{clientPayeeId} \
--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/{clientPayeeId}"
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.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
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/{clientPayeeId}', 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/{clientPayeeId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
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/{clientPayeeId}"
payload := strings.NewReader("{\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}")
req, _ := http.NewRequest("PUT", 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.put("https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees/{clientPayeeId}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\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}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees/{clientPayeeId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\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}"
response = http.request(request)
puts response.read_body{
"errors": [
{
"fields": [
"iban"
],
"code": 51,
"message": "<string>"
}
],
"clientPayeeId": "<string>"
}Payees
Update a payee
Amend a payee by your clientPayeeId.
PUT
/
reports
/
cesop
/
v1
/
submissions
/
{submissionId}
/
payees
/
{clientPayeeId}
Update a payee
curl --request PUT \
--url https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees/{clientPayeeId} \
--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/{clientPayeeId}"
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.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
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/{clientPayeeId}', 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/{clientPayeeId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
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/{clientPayeeId}"
payload := strings.NewReader("{\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}")
req, _ := http.NewRequest("PUT", 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.put("https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees/{clientPayeeId}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\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}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rrc.dev.finventi.com/reports/cesop/v1/submissions/{submissionId}/payees/{clientPayeeId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\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}"
response = http.request(request)
puts response.read_body{
"errors": [
{
"fields": [
"iban"
],
"code": 51,
"message": "<string>"
}
],
"clientPayeeId": "<string>"
}In a not-yet-submitted submission this edits the draft payee in place. In a correction round it amends the already-reported payee; because that payee may have been reported across several packages, the correction fans out across all of them.
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Body
application/json
A payee to report.
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