Skip to main content
GET
/
v1
/
persons
/
{personId}
/
taxProfile
Get tax profile
curl --request GET \
  --url https://api.cadanapay.com/v1/persons/{personId}/taxProfile \
  --header 'Authorization: Bearer <token>'
{
  "taxProfile": {
    "countryCode": "DE",
    "maritalStatus": "single",
    "numberOfDependents": 2
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.cadanapay.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Headers

X-MultiTenantKey
string

Required when using a Platform API token. The tenant key identifying which business to operate on.

Path Parameters

personId
string<uuid>
required

The unique identifier for the person

Response

Successful operation

taxProfile
object

The person's tax profile. Empty if none set.

Example:
{
"countryCode": "DE",
"maritalStatus": "single",
"numberOfDependents": 2
}