GET
/
purchasedVehicle_onfetch_v2
/
{purchasedVehicleId}
curl --request GET \
  --url https://api.ekhodealer.com/purchasedVehicle_onfetch_v2/{purchasedVehicleId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "productId": "<string>",
  "vehicleType": "Passenger",
  "buyerId": "<string>",
  "buyerFullName": "<string>",
  "lastActive": 123,
  "placedOrderId": "<string>",
  "orderFee": 123,
  "name": "<string>",
  "basePrice": 123,
  "basePriceWithSpecs": 123,
  "specs": [
    {
      "name": "<string>",
      "price": 123,
      "option": "<string>",
      "description": "<string>",
      "id": "<string>"
    }
  ],
  "imgUrl": "<string>",
  "description": "<string>",
  "oemId": "<string>",
  "typeOfOrder": "preorder",
  "dotVehicle": true,
  "datePurchased": 123,
  "stage": "signOff",
  "vehicleFulfillmentStatus": "FULFILLED",
  "fulfillmentDetails": {
    "vehicleTrackingReference": "<string>",
    "contactNumber": "<string>",
    "companyName": "<string>",
    "msoTrackingReference": "<string>",
    "msoSent": true
  },
  "grossInvoicePrice": 123,
  "sensitiveDataPurged": true,
  "variantId": "<string>",
  "sku": "<string>",
  "boltOnAccessories": [
    "<string>"
  ],
  "totalPrice": 123,
  "preDiscountTotalPrice": 123,
  "orderCreationType": "ORGANIC",
  "externalStatus": "UNCATEGORIZED",
  "estimatedProductionDate": 123,
  "estimatedDeliveryDate": 123,
  "year": 123,
  "pickUpInfo": {
    "pickUpLocationId": "<string>",
    "pickUpLocationName": "<string>",
    "addressLineOne": "<string>",
    "addressLineTwo": "<string>",
    "county": "<string>",
    "city": "<string>",
    "state": "<string>",
    "zip": "<string>"
  },
  "deliveryInfo": {
    "addressLineOne": "<string>",
    "addressLineTwo": "<string>",
    "county": "<string>",
    "city": "<string>",
    "state": "<string>",
    "zip": "<string>",
    "deliveryInstructions": "<string>",
    "poc": "<string>",
    "pocName": "<string>",
    "pocNumber": 123
  },
  "registrationDetails": {
    "tarProcess": "AUTOMATED",
    "registrationState": "<string>",
    "birthYear": 123
  },
  "additionalDues": {
    "fidelity": "initial",
    "total": 123,
    "taxTotal": 123,
    "feeTotal": 123,
    "deliveryEstimate": 123,
    "pickUpEstimate": 123,
    "taxEstimates": [
      {
        "feeType": "<string>",
        "name": "<string>",
        "value": 123
      }
    ],
    "feeEstimates": [
      {
        "feeType": "<string>",
        "name": "<string>",
        "value": 123
      }
    ]
  },
  "vin": "<string>",
  "odometerReading": 123,
  "odometerValidity": "Actual",
  "motorcycleEngineNumber": "<string>",
  "checkoutCartId": "<string>",
  "lastUpdated": 123,
  "lastNudged": 123,
  "vehicleInvoiceURL": "<string>",
  "metadata": {},
  "surveyData": {},
  "requiresAssemblyAfterDelivery": true,
  "paymentSelection": "nativeFinancing",
  "vehiclePaymentStatus": "RESERVATION_INITIATIED",
  "totalAmountReceived": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

purchasedVehicleId
string
required

Unique identifier of the purchased vehicle to retrieve.

Query Parameters

oemKey
string
required

Key to identify and authenticate the OEM admin.

Response

200
application/json

Successfully retrieved the purchased vehicle details.

PurchasedVehicle interface Represents a purchased vehicle along with its associated data and metadata.