# Contacts CSV Formatting

There are several different acceptable formats for CSV contacts. The only format restriction is that the first column header must be 'destination'. Other than that, users may supply optional columns of information. DEV sets these data as variables within your outbound call.

The following list provides samples of different phone number formats for 5 different contacts. Observe that none of these numbers have call variables set:

```
"destination"
"1234567890"
"1112223456"
"tel:12223456547"
"tel:+16177123000;ani=5553336666"
"19998886666"
```

Note the various supported phone number formats. **All phone numbers must include a "1" before the area code.** Users can add optional parameters for phone number strings, e.g. 'tel', 'ani', etc.

{% hint style="warning" %}
**As of 2019, ANI should be set on all outbound phone calls** as federal regulation requirements means that most inbound carriers will block outbound calls that do not originate somewhere. ANI must be a number in your Plum DEV account.

For more information about STIR/SHAKEN & Robocalling, please [click here](https://docs.plumvoice.com/documentation/using-the-plum-voice-suite/how-to-guides/best-practices-for-outbound-calling-on-the-plum-voice-platform/robocalling-stir-shaken-and-ani).
{% endhint %}

The following file includes the same list of phone numbers, but with the additional variables '*first\_name*' and '*last\_name*' for use within the application:

```
"destination","first_name","last_name"
"1234567890","Steve","Smith"
"1112223456","Klein","Reynolds"
"tel:12223456547","Sloane","Bergeron"
"tel:+16177123000;ani=5553336666","Plum","Voice"
"19998886666","Keith","Johnston"
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.plumvoice.com/dev/plum-dev-apis/dev-outbound-apis/contacts-csv-formatting.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
