GET
/
purchasedAccessory_onfetch_v2
/
{purchasedAccessoryId}
curl --request GET \
  --url https://api.ekhodealer.com/purchasedAccessory_onfetch_v2/{purchasedAccessoryId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "productId": "<string>",
  "name": "<string>",
  "basePrice": 123,
  "totalPrice": 123,
  "preDiscountTotalPrice": 123,
  "specs": [
    {
      "name": "<string>",
      "price": 123,
      "option": "<string>",
      "description": "<string>",
      "id": "<string>"
    }
  ],
  "imgUrl": "<string>",
  "description": "<string>",
  "oemId": "<string>",
  "placedOrderId": "<string>",
  "buyerId": "<string>",
  "datePurchased": 123,
  "count": 123,
  "variantId": "<string>",
  "sku": "<string>",
  "boltOnVehicleIds": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

purchasedAccessoryId
string
required

Unique identifier of the purchased accessory to retrieve.

Query Parameters

oemKey
string
required

Key to identify and authenticate the OEM admin.

Response

200
application/json

Successfully retrieved the purchased accessory details.

The response is of type object.