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

#### URL Expired

The URL for this request expired after 30 days.

### Fleet Management API Specification

#### Fleet Properties

- **id**: integer (required) - The id of the fleet  
- **name**: string - The name of the fleet  
- **agreement_id**: number - The ID of the agreement to assign to the fleet  
- **program_type**: string - A string representing the type of program the fleet is in (courtesy, rental, etc)
- **require_insurance_sufficiency**: string (enum) - Specifies when insurance sufficiency checks are required (none, loaner, rental, or loaner_rental)
- Allowed Values: `none`, `loaner`, `rental`, `loaner_rental`  
- **api-version**: integer (required) - Target API version

### Success Response

**200** Success

```json
{
  "id": 123,
  "name": "Loaner",
  "agreement_id": 5,
  "created_at": "2024-01-01T12:00:00Z",
  "contractable": true,
  "external_availability_group": false,
  "repair_order_number_required": false,
  "exclude_rate": false,
  "pdf_agreement_url": "https://www.example.com/agreement.pdf",
  "program_type": "rental",
  "source_of_business": "customer",
  "reservation_time_cap": 60,
  "reservation_time_cap_warning": 5,
  "allow_charge_later": true,
  "allow_manual_signature": false,
  "require_customer_vin": false,
  "guided_walkaround_enforced": false,
  "require_insurance_sufficiency": "loaner_rental",
  "sales_lead_enabled": false,
  "sales_lead_offset_hours": 3,
  "sales_lead_cms_config_email": "leads@dealer.com",
  "misc": {}
}
```

### Error Responses

- **401** Unauthorized  
- **403** Forbidden  
- **404** Not Found  
- **406** Not Acceptable  
- **422** Unprocessable Content
