Skip to main content
PATCH
/
v3
/
teams
/
{team}
/
partner
Update Partner
curl --request PATCH \
  --url https://app.plugchoice.com/api/v3/teams/{team}/partner \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tax_country": "<string>",
  "tax_id": "<string>"
}
'
{
  "tax_country": "<string>",
  "tax_id": "<string>"
}
Updates the tax settings for the team’s partner account.
team
string
required
The UUID of the team.
tax_country
string
The ISO 3166-1 alpha-2 country code for tax purposes (e.g., NL, DE). Must be a supported country. Set to null to clear.
tax_id
string
The tax identification number. Maximum 50 characters. Required when tax_country is provided.

Response

tax_country
string
The updated tax country code.
tax_id
string
The updated tax ID.