{"id":19404489,"url":"https://github.com/seven-io/home-assistant","last_synced_at":"2025-04-24T09:30:40.776Z","repository":{"id":41312301,"uuid":"509121113","full_name":"seven-io/home-assistant","owner":"seven-io","description":"HACS supporting Home Assistant integration for seven","archived":false,"fork":false,"pushed_at":"2024-06-17T03:03:44.000Z","size":223,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-06-17T04:24:24.079Z","etag":null,"topics":["hacs","hacs-integration","hassio","hassio-integration","home-assistant","home-assistant-integration","home-automation","sms","tts"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/seven-io.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-30T14:49:11.000Z","updated_at":"2024-06-17T04:24:27.199Z","dependencies_parsed_at":"2023-12-19T09:39:21.564Z","dependency_job_id":null,"html_url":"https://github.com/seven-io/home-assistant","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seven-io%2Fhome-assistant","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seven-io%2Fhome-assistant/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seven-io%2Fhome-assistant/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seven-io%2Fhome-assistant/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/seven-io","download_url":"https://codeload.github.com/seven-io/home-assistant/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223947873,"owners_count":17230102,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacs","hacs-integration","hassio","hassio-integration","home-assistant","home-assistant-integration","home-automation","sms","tts"],"created_at":"2024-11-10T11:35:10.966Z","updated_at":"2025-04-24T09:30:40.757Z","avatar_url":"https://github.com/seven-io.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\r\n\u003cimg src=\"https://www.seven.io/wp-content/uploads/Logo-with-darkmode.svg\" width=250\u003e\r\n\r\n# Home Assistant integration\r\n\r\nThis integration adds the possibility of sending SMS and making text-to-speech calls via [seven](https://www.seven.io).\r\n\r\n## Installation\r\n\r\n### Manually\r\n\r\nClone the repository to a folder called \"custom_components\" in your Home\r\nAssistant root directory, e.g. `git clone https://github.com/seven-io/home-assistant ~/.homeassistant/custom_components/seven`\r\n\r\n### Via [HACS](https://hacs.xyz/)\r\n- Navigate to HACS -\u003e Integrations -\u003e Custom repositories -\u003e Add\r\n- Set *Repository* to **https://github.com/seven-io/home-assistant**\r\n- Set *Type* to **Integration**\r\n- Confirm form submission and the repository should be appended to the list\r\n\r\n## Configuration\r\n\r\nAdd to `configuration.yaml` - usually in `~/.homeassistant/`:\r\n\r\n```yaml\r\nnotify:\r\n  - platform: seven\r\n    sender: HomeAssist # defaults to hass - see https://help.seven.io/en/set-sender-id\r\n    name: seven_sms\r\n    api_key: INSERT_YOUR_SEVEN_API_KEY_HERE # see https://help.seven.io/en/api-key-access\r\n    recipient: 01716992343 # or specify multiple numbers e.g. [01771783130, 01716992343]\r\n  - platform: seven\r\n    sender: +491771783130 # - see https://help.seven.io/en/shared-numbers\r\n    name: seven_voice\r\n    api_key: INSERT_YOUR_SEVEN_API_KEY_HERE # see https://help.seven.io/en/api-key-access\r\n    recipient: [01771783130, 01716992343]\r\n    type: 'voice'\r\n```\r\n\r\nCheck out the [example](./screenshots/automation_action_call_service.png) on how to\r\nconfigure a service call on automation when using the GUI.\r\n\r\nNote that you can also make a minimal configuration to `configuration.yaml` where all the remaining necessary configuartion will be made in the automation like:\r\n```yaml\r\nnotify:\r\n  - platform: seven\r\n    name: seven_sms\r\n    api_key: INSERT_YOUR_SMS77_API_KEY_HERE # see https://help.sms77.io/en/api-key-access\r\n```\r\n\r\nUse the following yaml example, entered via the automation GUI, if you want to manually configure the automation like when sending sensor data. Just add into the message field `'{{ states(\"sensor.sensor_name\") }}'` and manual configuration will be enabled:\r\n\r\n```yaml\r\nservice: notify.seven_sms\r\ndata:\r\n  data:\r\n    sender: From_Name\r\n  message: '{{ states(\"sensor.sensor_name\") }}'\r\n  target: Recipient_Phone_Number(s)\r\n```\r\n\r\nFollow the [Home Assistant - TEST IF IT WORKS](https://www.home-assistant.io/integrations/notify#test-if-it-works) documentation for testing your automation.\r\n\r\nConsider changing the [automation mode](https://www.home-assistant.io/docs/automation/modes/) for the automation which defaults to `single` when created. If you expect a series of consecutive triggers for the same automation, only the current running will be processed when `single` is defined and a log warning is written . Setting this to `parallel` will process them all one by another.  \r\n\r\n## API Communication Security\r\n\r\nWhen there is communication via the API to the `seven.io` host, this communication is secured via `https`. \r\n\r\n## Support\r\n\r\nNeed help? Feel free to [contact us](https://www.seven.io/en/company/contact/).\r\n\r\n[![MIT](https://img.shields.io/badge/License-MIT-teal.svg)](LICENSE)\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseven-io%2Fhome-assistant","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseven-io%2Fhome-assistant","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseven-io%2Fhome-assistant/lists"}