Superfy Platform API Documentation


Update Specific Vehicle API

Require Authentication

This API is used to update specific vehicle for the company based on combination of deviceID and token.


URL

api/manageassets/updatevehicle/:vehicleID

Required parameter (in URL)

Required parameter (POST)

Optional parameter

Example JSON Payload

{
	"deviceID": "ABCD-EFGH-IJKL-MNOP",
	"token": "bb602ab13b8090268cd6e3bb9dfa39e2",
	"vehicleNo": "N14DR edit",
	"vehicleName": "My Future Car edited",
	"vehicleType": "BMW",
	"vehicleDescription": "Future car edited",
	"vehicleColor": "Black",
	"vehicleYear": "2028"
}

Possible return HTTP status code

Return message

{
  "status": "success",
  "message": {
    "vehicleID": 3,
    "companyID": 1,
    "vehicleName": "My Future Car edited",
    "vehicleType": "BMW",
    "vehicleNo": "N14DR edit",
    "vehicleDescription": "Future car edited",
    "vehicleColor": "Black",
    "vehicleYear": 2028,
    "createdDate": 1467819009,
    "updatedDate": 1467819854,
    "createdByUserID": 3,
    "updatedByUserID": 3
  }
}