Skip to main content
GET
/
v3
/
teams
/
{team}
/
billing
/
details
Get Billing Details
curl --request GET \
  --url https://app.plugchoice.com/api/v3/teams/{team}/billing/details \
  --header 'Authorization: Bearer <token>'
{
  "company_name": "<string>",
  "email": "<string>",
  "address": {
    "line1": "<string>",
    "city": "<string>",
    "postal_code": "<string>",
    "country": "<string>"
  },
  "tax_id": {
    "type": "<string>",
    "value": "<string>"
  },
  "supported_countries": [
    {}
  ]
}

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.

Returns the billing details for a team, including company information, address, and tax ID.
team
string
required
The UUID of the team.

Response

company_name
string
The company name on file.
email
string
The billing email address, or null if not set.
address
object
The billing address, or null if not set.
tax_id
object
The tax ID on file, or null if not set.
supported_countries
array
List of supported two-letter ISO country codes.