Skip to main content
POST
/
audio
/
stop
stop an audio source by entity ID
curl --request POST \
  --url http://localhost:3917/audio/stop \
  --header 'Content-Type: application/json' \
  --data '{
  "entity_id": 7
}'
{
  "ok": true,
  "message": "<string>"
}

Body

application/json

Stop a playing audio source: entity_id of the source entity.

The body is of type any.

Response

200 - application/json

Source stopped; ok is false with a message if the entity is missing.

ok
boolean
required
message
string | null