GET
/
vehicles
/
{id}
/
{make}
/
user
/
info
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/user/info" \
-H "Authorization: Bearer {token}" \
-X "GET"
    {
        "email" : "api@smartcar.com"
    }

This endpoint is currently available for tesla

Permission

read_user_profile

curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/user/info" \
-H "Authorization: Bearer {token}" \
-X "GET"

Request

Path

id
string
required

The vehicle ID of the vehicle you are making a request to.

make
string
required

The make of the vehicle you are making a request to.

Response

email
string | null

The email associated with the connected Tesla account.

    {
        "email" : "api@smartcar.com"
    }

Was this page helpful?