Users
Endpoints for getting information about the current user
These endpoints provide data on the current user.
Get the current user's information.
{
"email": "[email protected]",
"full_name": "Elon Musk",
"profile_image_url": "https://vehicle-files.prd.euw1.vn.cloud.tesla.com/profile_images/{IMG}.jpg"
}
This endpoint is a mystery, it returns what appears to be base64 encoded strings. When decoded it has a bunch of jibberish and then two certificates and some readable strings, and what appears to be a hash of something.
{
"vault": "base64_jibberish"
}
Get the feature configuration for the mobile app.
{
"signaling": {
"enabled": true,
"subscribe_connectivity": false
}
}
Update the name of a (bluetooth) key in all vehicles linked to the account. Refreshed inside the vehicle everytime the "Locks" menu is opened.
kind
and public_key
must be set, everything else only needs to be set if you want to change it.Parameter | Example | Description |
---|---|---|
kind | mobile_device | Must be "mobile_device" |
public_key | 04ed05567b... | The ANSI X9.62/X9.63 representation of the public key that you wish to change (65 bytes long) - as a hex string |
name | Sam's Phone | The name of the key (main text) |
model | iPhone 14 Pro | The model of the key (sub text) |
{
"response": true
}
Last modified 1mo ago