curl --request GET \
--url https://api.cadanapay.com/v1/statutory/persons/{person_id}/fields/{country_code} \
--header 'Authorization: Bearer <token>'{
"entityType": "person",
"entityId": "per_xyz789",
"countryCode": "DE",
"fields": {
"steuerID": "97148835200",
"sozialversicherungsnummer": "54211075L005",
"firstName": "Max",
"lastName": "Mustermann"
}
}Returns statutory filing data for a person in a jurisdiction. The response is a merged view: fields explicitly submitted via PUT are combined with defaults read from the person service (e.g., firstName, lastName).
curl --request GET \
--url https://api.cadanapay.com/v1/statutory/persons/{person_id}/fields/{country_code} \
--header 'Authorization: Bearer <token>'{
"entityType": "person",
"entityId": "per_xyz789",
"countryCode": "DE",
"fields": {
"steuerID": "97148835200",
"sozialversicherungsnummer": "54211075L005",
"firstName": "Max",
"lastName": "Mustermann"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Person identifier
ISO 3166-1 alpha-2 country code
^[A-Z]{2}$Person filing data
Merged view of statutory filing data for an entity. Combines fields explicitly submitted via PUT with defaults read from the upstream service (person service or business service).
Type of entity this data belongs to
person, business "person"
ID of the person or business
"per_xyz789"
"DE"
Merged field data
Show child attributes
{
"steuerID": "97148835200",
"sozialversicherungsnummer": "54211075L005",
"firstName": "Max",
"lastName": "Mustermann"
}