# Company data

Source: https://developer.avalara.com/products/communications/integration-guides/communications-integration/zaw7449021954620/

Guide: Communications

# Company data

The CompanyData object (`cmpn`) provides information about your company. This object includes the following fields.

Table 1. 

Object/field

Description

`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 isn’t 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 don’t apply to the seller

`reg`

`[bool]` required Regulated

-   `true`: Seller is regulated
-   `false`: Seller isn’t regulated

`excl`

`[Exclusion]` Exclusions An array of [Exclusion](https://developer.avalara.com/api-reference/communications/v2/models/Exclusion/) objects that identify states/provinces/territories where your company is excluded from collecting taxes. We suggest using a client profile with an Exclusion File applied for increased performance.

`idnt`

`[string]` Company Identifier. An optional company identifier used in reporting. Represents your company or, if you’re a third-party billing provider, could represent one of your clients. Max length: 20 bytes

## Example

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