Skip to main content
PUT
/
v1
/
statutory
/
businesses
/
{business_id}
/
fields
/
{country_code}
Submit business filing fields
curl --request PUT \
  --url https://api.cadanapay.com/v1/statutory/businesses/{business_id}/fields/{country_code} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "fields": {
    "betriebsnummer": "12345678",
    "finanzamtNummer": "2722"
  }
}
'
{
  "error": {
    "code": "invalid_request",
    "message": "countryCode is required",
    "details": [
      {
        "field": "<string>",
        "message": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

business_id
string
required

Business identifier

country_code
string
required

ISO 3166-1 alpha-2 country code

Pattern: ^[A-Z]{2}$

Body

application/json

Request body for submitting statutory filing fields.

fields
object
required

Key-value pairs of field data. Keys must match the key values from the jurisdiction's required-fields response.

Example:
{
"steuerID": "97148835200",
"personengruppenschluessel": "101"
}

Response

Fields saved successfully