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

#### URL Expired

The URL for this request expired after 30 days.

---

**id**  
integer  
required  
The id of the dealership

**Data used to generate the QR code**

**customer_id**  
integer  
required  
ID of the customer for whom to generate the QR code

**deeplink_to**  
string  
enum  
Optional parameter to navigate to a specific page in the mobile app.

- `personal_info`: Personal Info Form - Update name, email, phone, address  
- `payment_info`: Payment Form - Add/update credit card  
- `driving_license`: License Upload - Capture or update driver's license photo  
- `insurance`: Insurance Form - Add/update insurance details  
- `axle`: Axle Integration - Start Axle insurance verification

If omitted or invalid, customer will be directed to the splash/home page.

Allowed:  
`personal_info` `payment_info` `driving_license` `insurance` `axle`

**reservation_id**  
integer  
Optional reservation id to associate with the generated MCI remote profile link

**accept**  
string  
enum  
Defaults to application/json

Generated from available response content types

Allowed:  
`application/json` `image/svg+xml` `text/plain`

# `200      Success - QR code generated`

**file**  
SVG image containing the QR code (default format)

# `403      Forbidden`

# `422      Unprocessable Content`

---

**Base URL**  
https://api.dealerware.com/admin/dealerships/{id}/customers/remote_profile/qr_code

```bash
curl --request POST \
     --url https://api.dealerware.com/admin/dealerships/id/customers/remote_profile/qr_code \
     --header 'accept: application/json' \ 
     --header 'content-type: application/json'
```

```xml
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
  <!-- QR code SVG content -->
</svg>
```
