Skip to main content
GET
/
v3
/
teams
/
{team}
/
billing
/
reimbursement
/
links
List Reimbursement Links
curl --request GET \
  --url https://app.plugchoice.com/api/v3/teams/{team}/billing/reimbursement/links \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "name": "<string>",
  "employee": {
    "name": "<string>",
    "has_stripe_connect": true
  },
  "charger": {
    "uuid": "<string>",
    "identity": "<string>"
  },
  "status": "<string>",
  "status_label": "<string>",
  "rate_per_kwh": 123,
  "currency": "<string>",
  "activated_at": "<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.

Returns a paginated list of reimbursement links for a team.
team
string
required
The UUID of the team.

Response

The response is a paginated list of reimbursement link objects.
id
integer
The numeric ID of the reimbursement link.
name
string
The display name of the reimbursement link.
employee
object
The linked employee, or null if not yet accepted.
charger
object
The linked charger, or null if not yet linked.
status
string
The link status. One of pending, active, or terminated.
status_label
string
A human-readable label for the status.
rate_per_kwh
number
The reimbursement rate in cents per kWh.
currency
string
The currency code for the reimbursement rate.
activated_at
string
ISO 8601 timestamp of when the link was activated, or null if not yet activated.