Skip to main content
PUT
/
v3
/
teams
/
{team}
/
billing
/
reimbursement
/
settings
Update Reimbursement Settings
curl --request PUT \
  --url https://app.plugchoice.com/api/v3/teams/{team}/billing/reimbursement/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "default_rate": 123,
  "default_currency": "<string>"
}
'
{
  "default_rate": 123,
  "default_currency": "<string>"
}

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 default reimbursement rate and currency for a team.
team
string
required
The UUID of the team.
default_rate
integer
required
The default reimbursement rate in cents per kWh. Must be between 1 and 125.
default_currency
string
required
The default currency code. Must be a supported currency.

Response

default_rate
number
The updated default reimbursement rate in cents per kWh.
default_currency
string
The updated default currency code.