Skip to main content
POST
/
v3
/
teams
/
{team}
/
chargers
/
import
Import Chargers
curl --request POST \
  --url https://app.plugchoice.com/api/v3/teams/{team}/chargers/import \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "message": "<string>",
  "created": 123,
  "skipped": 123,
  "errors": [
    {
      "row": 123,
      "identity": "<string>",
      "error": "<string>"
    }
  ]
}
Import chargers to a team from a CSV file. The CSV should contain one Chargepoint ID (identity) per row. An optional header row is automatically detected and skipped.
team
string
required
The UUID of the team.
file
file
required
A CSV file containing charger identities. Must be a .csv or .txt file, with a maximum size of 1MB.

Response

message
string
A summary message (e.g., Import completed).
created
integer
The number of chargers successfully created.
skipped
integer
The number of rows that were skipped.
errors
array
An array of error objects for rows that failed.