SPAREPARTS / Battery Health Rating

Description

Returns the vehicle’s battery health rating.

Request

Method

GET

URL

https://open.youbiai.com/api/ic/if_sp_dysys_battery_health_rating

Request Body

access_token

String

required parameter for each developer to request

vid

String

a vehicle id

Response Body

vid

String

a vehicle id

status

String

Value: 0(Fail) or 1(Succeed).

health_rating

String

level:1~5 description:3:In moderate health. the higher the level, the higher the health

Sample Request
curl -G -X GET \
https://open.youbiai.com/api/ic/if_sp_dysys_battery_health_rating \
-d 'access_token=4b153b0b3476c8aa3cbec9d8e76273cf' \
-d 'vid=NHeN4UqVsohGS55I7LBdh' \


Sample Response
{
  "code":200,
  "msg":"success",
  "data":{
    "vid":"NHeN4UqVsohGS55I7LBdh",
    "status":1,
    "health_rating":"0"
  }
}