# Attributes

## Carrier Object

### Attributes

* `id` **Integer**  
  Unique ID for the carrier

* `personalId` **Integer**  
  Personal ID for the carrier

* `name` **String**  
  Name of the carrier

* `codeName` **String**  
  Code name for the carrier

* `phoneNumber` **String**  
  Phone number of the carrier with country code

* `companyId` **Integer**  
  Unique company ID for identifying the company

* `areaId` **Integer**  
  Unique area ID for identifying the area

* `isOnShift` **Boolean**  
  Indication for the carrier if he/she is on shift

* `email` **String**  
  Email Address of the carrier

* `carrierPhoto` **String**  
  URL link for the carrier photo

* `isActive` **Boolean**  
  Indication for the carrier if he/she is active

### Carrier Object Example

```json
{
    "id": 969,
    "personalId": null,
    "name": "Danial Tucker",
    "codeName": "",
    "phoneNumber": "+14234420986",
    "companyId": 409,
    "areaId": 406,
    "isOnShift": false,
    "email": "danialTucker@gmail.com",
    "carrierPhoto":"https://s3-us-west-2.amazonaws.com/qt.com.dashboard.profile.driver/somephotolink.jpg",
    "isActive": true
  }
```
