{"id":18995591,"url":"https://github.com/turbot/flowpipe-mod-sendgrid","last_synced_at":"2026-03-19T07:33:52.775Z","repository":{"id":212322400,"uuid":"704106933","full_name":"turbot/flowpipe-mod-sendgrid","owner":"turbot","description":"SendGrid pipeline library for the Flowpipe cloud scripting engine. Automation and workflows to connect SendGrid to the people, systems and data that matters.","archived":false,"fork":false,"pushed_at":"2024-10-22T12:38:27.000Z","size":34,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-10-23T08:19:04.840Z","etag":null,"topics":["automation","cloud","devops","flowpipe","flowpipe-mod","hacktoberfest","integrations","low-code","orchestration","pipelines","security","sendgrid","sendgrid-api","trello-se","twilio-sendgrid","workflow","workflow-automation","workflow-engine"],"latest_commit_sha":null,"homepage":"https://hub.flowpipe.io/mods/turbot/sendgrid","language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/turbot.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2023-10-12T14:48:47.000Z","updated_at":"2024-10-22T12:18:46.000Z","dependencies_parsed_at":"2024-10-22T19:45:03.781Z","dependency_job_id":null,"html_url":"https://github.com/turbot/flowpipe-mod-sendgrid","commit_stats":null,"previous_names":["turbot/flowpipe-mod-sendgrid"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/turbot/flowpipe-mod-sendgrid","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-mod-sendgrid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-mod-sendgrid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-mod-sendgrid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-mod-sendgrid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/turbot","download_url":"https://codeload.github.com/turbot/flowpipe-mod-sendgrid/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/turbot%2Fflowpipe-mod-sendgrid/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29843454,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T21:18:31.832Z","status":"ssl_error","status_checked_at":"2026-02-25T21:18:29.265Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["automation","cloud","devops","flowpipe","flowpipe-mod","hacktoberfest","integrations","low-code","orchestration","pipelines","security","sendgrid","sendgrid-api","trello-se","twilio-sendgrid","workflow","workflow-automation","workflow-engine"],"created_at":"2024-11-08T17:31:52.347Z","updated_at":"2026-02-25T22:33:05.228Z","avatar_url":"https://github.com/turbot.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SendGrid Mod for Flowpipe\n\nSendGrid pipeline library for [Flowpipe](https://flowpipe.io), enabling seamless integration of SendGrid services into your workflows.\n\n## Documentation\n\n- **[Pipelines →](https://hub.flowpipe.io/mods/turbot/sendgrid/pipelines)**\n\n## Getting started\n\n### Requirements\n\nDocker daemon must be installed and running. Please see [Install Docker Engine](https://docs.docker.com/engine/install/) for more information.\n\n### Installation\n\nDownload and install Flowpipe (https://flowpipe.io/downloads). Or use Brew:\n\n```sh\nbrew tap turbot/tap\nbrew install flowpipe\n```\n\nClone:\n\n```sh\ngit clone https://github.com/turbot/flowpipe-mod-sendgrid.git\ncd flowpipe-mod-sendgrid\n```\n\n### Connections\n\nBy default, the following environment variables will be used for authentication:\n\n- `SENDGRID_API_KEY`\n\nYou can also create `connection` resources in configuration files:\n\n```sh\nvi ~/.flowpipe/config/sendgrid.fpc\n```\n\n```hcl\nconnection \"sendgrid\" \"sendgrid_cred\" {\n  api_key = \"SG.R7....\"\n}\n```\n\nFor more information on connections in Flowpipe, please see [Managing Connections](https://flowpipe.io/docs/run/connections).\n\n### Usage\n\nList pipelines:\n\n```sh\nflowpipe pipeline list\n```\n\nRun a pipeline:\n\n```sh\nflowpipe pipeline run send_mail\n```\n\nYou can pass in pipeline arguments as well:\n\n```sh\nflowpipe pipeline run get_contact_by_id --arg contact_id=ZGkrHSypTsudrGkmdpJJ\n```\n\nTo use a specific `connection`, specify the `conn` pipeline argument:\n\n```sh\nflowpipe pipeline run get_contact_by_id --arg contact_id=ZGkrHSypTsudrGkmdpJJ --arg conn=connection.sendgrid.sendgrid_cred\n```\n\nFor more examples on how you can run pipelines, please see [Run Pipelines](https://flowpipe.io/docs/run/pipelines).\n\n### Configuration\n\nNo additional configuration is required.\n\n## Open Source \u0026 Contributing\n\nThis repository is published under the [Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0). Please see our [code of conduct](https://github.com/turbot/.github/blob/main/CODE_OF_CONDUCT.md). We look forward to collaborating with you!\n\n[Flowpipe](https://flowpipe.io) is a product produced from this open source software, exclusively by [Turbot HQ, Inc](https://turbot.com). It is distributed under our commercial terms. Others are allowed to make their own distribution of the software, but cannot use any of the Turbot trademarks, cloud services, etc. You can learn more in our [Open Source FAQ](https://turbot.com/open-source).\n\n## Get Involved\n\n**[Join #flowpipe on Slack →](https://flowpipe.io/community/join)**\n\nWant to help but not sure where to start? Pick up one of the `help wanted` issues:\n\n- [Flowpipe](https://github.com/turbot/flowpipe/labels/help%20wanted)\n- [SendGrid Mod](https://github.com/turbot/flowpipe-mod-sendgrid/labels/help%20wanted)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fturbot%2Fflowpipe-mod-sendgrid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fturbot%2Fflowpipe-mod-sendgrid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fturbot%2Fflowpipe-mod-sendgrid/lists"}