> ## Documentation Index
> Fetch the complete documentation index at: https://docs.inceptia.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Phone number construction

> The order in which each final phone number is assembled

The final number is **always** built in this order:

```
[balance_prefix] + [country_code] + [phone_type*] + [phone_prefix] + [phone_number]
```

<Note>
  If the phone is a mobile in Argentina, the digit `9` is added between the country code and the area code.
</Note>

## Examples

**Argentina mobile without balance prefix:**

```
[ ] + [54] + [9] + [11] + [12345678]  →  5491112345678
```

**Argentina mobile with balance prefix:**

```
[2] + [54] + [9] + [11] + [12345678]  →  25491112345678
```

**Already complete number (bots outside Argentina):**

```
[ ] + [ ] + [ ] + [ ] + [5491112345678]  →  5491112345678
```
