All tax residencies related paths.
/users/{user_id}/tax_residencies
Retrieve tax residencies
user_id
string
required
User unique identifier.
User tax residencies
{
"created_at": "2021-07-21T14:10:00.00Z",
"updated_at": "2021-07-21T14:10:00.00Z",
"status": "ACTIVE",
"tax_residencies": [
{
"country": "IT",
"tax_identifier_number": "LLLLLL99L99L999L"
},
{
"country": "FR",
"missing_tin_reason": "COUNTRY_HAS_NO_TIN"
},
{
"country": "DE",
"tax_identifier_number": "12345678901"
}
]
}
/users/{user_id}/tax_residencies
Update tax residencies
tax_residencies
array
required
{
"tax_residencies": [
{
"country": "DE",
"tax_identifier_number": "12345678901"
}
]
}
User tax residencies
{
"created_at": "2021-07-21T14:10:00.00Z",
"updated_at": "2021-07-21T14:10:00.00Z",
"tax_residencies": [
{
"country": "AT",
"missing_tin_reason": "TIN_NOT_YET_ASSIGNED"
},
{
"country": "DE",
"tax_identifier_number": "12345678901"
}
],
"status": "ACTIVE"
}
Was this page helpful?