All taxes related paths.

Retrieve tax residencies

get /users/{user_id}/tax_residencies

Retrieve tax residencies

user_id

string

uuid

required

User unique identifier.

Response

ExamplesSchema

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"
    }
  ]
}

Update tax residencies

post /users/{user_id}/tax_residencies

Update tax residencies

tax_residencies

array[One Of]

required

Request

{
  "tax_residencies": [
    {
      "country": "DE",
      "tax_identifier_number": "12345678901"
    }
  ]
}

Response

ExamplesSchema

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?