> ## 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.

# Import Chargers

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.

<ParamField path="team" type="string" required>
  The UUID of the team.
</ParamField>

<ParamField body="file" type="file" required>
  A CSV file containing charger identities. Must be a `.csv` or `.txt` file, with a maximum size of 1MB.
</ParamField>

## Response

<ResponseField name="message" type="string">
  A summary message (e.g., `Import completed`).
</ResponseField>

<ResponseField name="created" type="integer">
  The number of chargers successfully created.
</ResponseField>

<ResponseField name="skipped" type="integer">
  The number of rows that were skipped.
</ResponseField>

<ResponseField name="errors" type="array">
  An array of error objects for rows that failed.

  <Expandable title="error">
    <ResponseField name="row" type="integer">
      The row number in the CSV file.
    </ResponseField>

    <ResponseField name="identity" type="string">
      The charger identity from the failed row.
    </ResponseField>

    <ResponseField name="error" type="string">
      The error message describing why the row failed.
    </ResponseField>
  </Expandable>
</ResponseField>
