POST
/
purchasedVehicle_oncreate_v2
/
{purchasedVehicleId}
/
vehicleFulfillmentStatus
curl --request POST \
  --url https://api.ekhodealer.com/purchasedVehicle_oncreate_v2/{purchasedVehicleId}/vehicleFulfillmentStatus \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "oemKey": "<string>",
  "vehicleFulfillmentStatus": "UNFULFILLED",
  "fulfillmentDetails": {
    "vehicleTrackingReference": "<string>",
    "companyName": "<string>",
    "contactNumber": "<string>"
  },
  "estimatedDeliveryDate": "<string>"
}'
{
  "vehicleFulfillmentStatus": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

purchasedVehicleId
string
required

The ID of the purchased vehicle where the fulfillment status will be updated.

Body

application/json

Response

200
application/json

Fulfillment status successfully updated on the purchased vehicle.

The response is of type object.