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

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 name and optionally the rate of a reimbursement link.
team
string
required
The UUID of the team.
The ID of the reimbursement link.
name
string
required
The display name for the reimbursement link. Maximum 255 characters.
rate_per_kwh
integer
The reimbursement rate in cents per kWh. Must be between 1 and 125.

Response

The updated reimbursement link object.