homeassistant_call_service
Execute specific actions on Home Assistant entities by calling services. Define the entity, domain, and service to automate smart home operations efficiently.
Instructions
Call a service of a Home Assistant entity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | Yes | The domain of the service | |
entity_id | Yes | The entity ID of the Home Assistant entity | |
service | Yes | The service to call |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"domain": {
"description": "The domain of the service",
"type": "string"
},
"entity_id": {
"description": "The entity ID of the Home Assistant entity",
"type": "string"
},
"service": {
"description": "The service to call",
"type": "string"
}
},
"required": [
"entity_id",
"domain",
"service"
],
"type": "object"
}