Skip to main content
PUT
/
v3
/
teams
/
{team}
/
billing
/
details
Update Billing Details
curl --request PUT \
  --url https://app.plugchoice.com/api/v3/teams/{team}/billing/details \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "company_name": "<string>",
  "email": "<string>",
  "vat_number": "<string>",
  "address_line1": "<string>",
  "address_city": "<string>",
  "address_postal_code": "<string>",
  "address_country": "<string>"
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://developer.plugchoice.com/llms.txt

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

Updates the billing details for a team.
team
string
required
The UUID of the team.
company_name
string
required
The company name. Maximum 255 characters.
email
string
required
The billing email address. Must be a valid email. Maximum 255 characters.
vat_number
string
The VAT number. Maximum 50 characters. Set to null to remove.
address_line1
string
required
Street address line. Maximum 255 characters.
address_city
string
required
City name. Maximum 255 characters.
address_postal_code
string
required
Postal or ZIP code. Maximum 20 characters.
address_country
string
required
Two-letter ISO country code.

Response

success
boolean
Whether the billing details were updated successfully.