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

# The Profile object

> Profile object attributes for 10DLC business registration

### Attributes

|                             |                                                                                                |
| --------------------------- | ---------------------------------------------------------------------------------------------- |
| **profile\_uuid**           | A unique identifier for each profile.                                                          |
| **profile\_type**           | Indicates whether this is a primary or secondary profile.                                      |
| **primary\_profile**        | A unique identifier for the account’s primary profile.                                         |
| **profile\_alias**          | A friendly name for the profile.                                                               |
| **customer\_type**          | Indicates the nature of your operations and how you use Plivo’s voice and messaging offerings. |
| **entity\_type**            | Indicates ownership of the business.                                                           |
| **company\_name**           | Legal name of the company.                                                                     |
| **vertical**                | Company industry.                                                                              |
| **ein**                     | Employer Identification Number.                                                                |
| **ein\_issuing\_country**   | ISO country code of the country that issued the EIN.                                           |
| **address**                 | Postal address of the company.                                                                 |
| **authorized\_contact**     | Details of the authorized contact person at the company.                                       |
| **stock\_symbol**           | Stock symbol of the company.                                                                   |
| **stock\_exchange**         | Stock exchange where the company is listed.                                                    |
| **alt\_business\_id**       | Alternate business identification number.                                                      |
| **alt\_business\_id\_type** | Alternate business ID type.                                                                    |
| **website**                 | Business website.                                                                              |
| **plivo\_subaccount**       | Subaccount mapped to the profile.                                                              |

### Example Object

```json theme={null}
{
    "profile": {
        "address": {
            "city": "New York",
            "country": "US",
            "postal_code": "10001",
            "state": "NY",
            "street": "123"
        },
        "alt_business_id": "ABC",
        "alt_business_id_type": "DUNS",
        "authorized_contact": {
            "email": "john@example.com",
            "first_name": "john",
            "last_name": "doe",
            "phone": "12125557777",
            "seniority": "admin",
            "title": "Doe"
        },
        "company_name": "ABC Inc.12345",
        "customer_type": "RESELLER",
        "ein": "12125552222",
        "ein_issuing_country": "US",
        "entity_type": "PUBLIC",
        "plivo_subaccount": "SA2025RK4E639VJFZAMM",
        "primary_profile": "c780f9d0-e3c9-4d13-87f7-b898654569b0",
        "profile_alias": "john_doe",
        "profile_type": "SECONDARY",
        "profile_uuid": "f19c4773-4ae6-4b75-92ea-9cf3ea4227d6",
        "stock_exchange": "NYSE",
        "stock_symbol": "HIBYE",
        "vertical": "ENTERTAINMENT",
        "website": "hibye.com"
    }
}
```
