# Chapter 5.1.3 - Company Data

Source: https://developer.avalara.com/products/communications/integration-guides/dev-guide_rest_v2/reference/company-data/

-   [Previous](/communications/dev-guide_rest_v2/reference/request-config/)
-   [Next](/communications/dev-guide_rest_v2/reference/invoice/)

### Company Data

The `CompanyData` object contains information about **your** company:

Key

Value

`bscl`

`[int]` required Business Class

-   `0`: Incumbent Local Exchange Carrier (ILEC)
-   `1`: Not an ILEC

`svcl`

`[int]` required Service Class

-   `0`: Primary Local
-   `1`: Primary Long Distance

`fclt`

`[bool]` required Facilities  

Specifies if the carrier delivering the service has company-owned facilities to provide the service

-   `true`: Seller is facilities-based (cable operators and telephone companies)
-   `false`: Seller is not facilities-based (Internet based providers)

`frch`

`[bool]` Franchise  

Indicates if the company provides services sold pursuant to a franchise agreement between the carrier and jurisdiction

-   `true`: Seller has a franchise agreement
-   `false`: Franchise taxes do not apply to the seller

`reg`

`[bool]` required Regulated

-   `true`: Seller is regulated
-   `false`: Seller is not regulated

`excl`

[`[Exclusion]`](/communications/dev-guide_rest_v2/reference/exclusion/) Exclusions  

An array of [Exclusion](/communications/dev-guide_rest_v2/reference/exclusion/) objects that identify states/provinces/territories where your company is excluded from collecting taxes. We suggest using a [client profile](/communications/dev-guide_rest_v2/customizing-transactions/client-profiles/) with an [Exclusion file](/communications/dev-guide_rest_v2/customizing-transactions/account-customizations/) applied for increased performance  

`idnt`

`[string]` Company Identifier  

An optional company identifier used in reporting. Represents your company or, if you are a third-party billing provider, could represent one of your clients

-   Max length: 20 bytes

### Example

```json
"cmpn": { "bscl": 1, "svcl": 0, "fclt": true, "frch": true, "reg": false, "excl": [ { // Exclusion } ], "idnt": "Test Company 1"}
```

-   [Previous](/communications/dev-guide_rest_v2/reference/request-config/)
-   [Next](/communications/dev-guide_rest_v2/reference/invoice/)