curl --request GET \
--url https://api.cadanapay.com/v1/statutory/businesses/{business_id}/fields/{country_code} \
--header 'Authorization: Bearer <token>'{
"entityType": "business",
"entityId": "biz_01ABC",
"countryCode": "DE",
"fields": {
"betriebsnummer": "12345678",
"finanzamtNummer": "2722",
"steuernummer": "21/815/08150"
}
}Returns statutory filing data for a business in a jurisdiction. The response is a merged view: fields explicitly submitted via PUT are combined with defaults read from the business service.
curl --request GET \
--url https://api.cadanapay.com/v1/statutory/businesses/{business_id}/fields/{country_code} \
--header 'Authorization: Bearer <token>'{
"entityType": "business",
"entityId": "biz_01ABC",
"countryCode": "DE",
"fields": {
"betriebsnummer": "12345678",
"finanzamtNummer": "2722",
"steuernummer": "21/815/08150"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Business identifier
ISO 3166-1 alpha-2 country code
^[A-Z]{2}$Business 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"
}