Media
Controls the currently playing media in the car. For these commands to work, the car must be on.
Toggles the media between playing and paused. For the radio, this mutes or unmutes the audio.
{
"reason": "",
"result": true
}
Skips to the next track in the current playlist.
{
"reason": "",
"result": true
}
Skips to the previous track in the current playlist. Does nothing for streaming from Stitcher.
{
"reason": "",
"result": true
}
Skips to the next saved favorite in the media system.
{
"reason": "",
"result": true
}
Skips to the previous saved favorite in the media system.
{
"reason": "",
"result": true
}
Turns up the volume of the media system.
{
"reason": "",
"result": true
}
Turns down the volume of the media system.
{
"reason": "",
"result": true
}
Adjusts the volume of the media system to the desired volume.
This endpoint needs a single
volume
parameter passed inside of the POST body, and will tell you if it's missing.Note: the endpoint accepts both a string and a numerical value for the volume parameter. It is also currently not present as a feature inside of the Tesla App despite working.
Parameter | Example | Description |
---|---|---|
volume | 1 | Numerical value or string from 0-11 |
{
"volume": "1"
}
{
"volume": 1
}
{
"reason": "",
"result": true
}
Last modified 11mo ago