| Time | Status | User Agent |  |
| :-- | :-- | :-- | :-- |
| Make a request to see history. |

#### URL Expired

The URL for this request expired after 30 days.

**dealership_id**
- integer (required): Dealership ID

**token**
- string (required): Token

**api-version**
- integer (required): Target API version

# ``200      Success

**object**

- **phone_number**: string (required) - the phone number the text was sent to
- **reservation_id**: integer | null (required) - reservation id associated with the MCI profile link, if present

**customer**
- **object**
  - **id**: integer - ID of the customer
  - **dealership_id**: integer - ID of the dealership
  - **billing_service_customer_id**: integer - ID of the billing service customer
  - **first_name**: string - first name of the customer
  - **last_name**: string - last name of the customer
  - **language**: string - language of the customer
  - **phone_number**: string - phone number of the customer
  - **email**: string - email of the customer
  - **ccpa**: boolean - ccpa of the customer

**dealership**
- **object** (required)
  - **id**: integer
  - **insurance_form_provider**: string
  - **metric**: boolean
  - **name**: string
  - **phone_number**: string - phone number of the dealership
  - **salesforce_id**: string - salesforce id of the dealership
  - **time_zone**: string - name of the time zone of the dealership
  - **settings**: object

# ``403      Forbidden

# ``404      Not found

# ``422      Unprocessable Content

---

* * *

### API Request Example

"""
curl --request GET \
     --url https://api.dealerware.com/admin/dealerships/dealership_id/customers/messages/profiles \
     --header 'accept: application/json'
"""

"""

{
  "phone_number": 5125551234,
  "reservation_id": 123,
  "customer": {
    "id": 1,
    "dealership_id": 1,
    "billing_service_customer_id": 1,
    "first_name": "John",
    "last_name": "Doe",
    "language": "en",
    "phone_number": 1234567890,
    "email": null,
    "ccpa": false
  },
  "dealership": {
    "id": 1,
    "insurance_form_provider": "Sedgwick",
    "metric": false,
    "name": "Rentals of Austin",
    "phone_number": 5125551234,
    "salesforce_id": "ABC123",
    "time_zone": "America/Chicago",
    "settings": {
      "created_at": "2021-01-01T00:00:00Z",
      "currency_code": "usd",
      "embedded_telematics_provider": "Toyota",
      "managed_toggles": false,
      "metric": false,
      "notification_method": "sms",
      "prevailing_rate": 0,
      "contract_required": false,
      "confirm_res_modify": false,
      "telematics_enabled": false,
      "updated_at": "2021-01-01T00:00:00Z",
      "task_management_enabled": false,
      "pickup_and_delivery": {
        "valet_tasks_enabled": false,
        "radius": {
          "enabled": false,
          "value": 0
        }
      }
    }
  }
}
"""
