{"id":19471717,"url":"https://github.com/cpursley/webhoox","last_synced_at":"2025-07-17T14:08:00.463Z","repository":{"id":39592409,"uuid":"481715911","full_name":"cpursley/webhoox","owner":"cpursley","description":"Inbound webhooks the easy way","archived":false,"fork":false,"pushed_at":"2025-07-05T14:50:37.000Z","size":253,"stargazers_count":12,"open_issues_count":26,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-05T16:03:34.876Z","etag":null,"topics":["adapter","api","callbacks","connector","elixir","hasura","http","low-code","mailersend","mailgun","mandrill","parsio","s3","webhook","webhooks"],"latest_commit_sha":null,"homepage":"","language":"Elixir","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/cpursley.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,"zenodo":null}},"created_at":"2022-04-14T18:51:37.000Z","updated_at":"2025-07-05T14:50:41.000Z","dependencies_parsed_at":"2024-06-11T20:21:11.091Z","dependency_job_id":"bac6aace-873c-4b8a-9737-14988c635a44","html_url":"https://github.com/cpursley/webhoox","commit_stats":{"total_commits":108,"total_committers":7,"mean_commits":"15.428571428571429","dds":0.712962962962963,"last_synced_commit":"2589b5f931e4598483b74ce7f33c72455373c933"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/cpursley/webhoox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cpursley%2Fwebhoox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cpursley%2Fwebhoox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cpursley%2Fwebhoox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cpursley%2Fwebhoox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cpursley","download_url":"https://codeload.github.com/cpursley/webhoox/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cpursley%2Fwebhoox/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265614332,"owners_count":23798427,"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":["adapter","api","callbacks","connector","elixir","hasura","http","low-code","mailersend","mailgun","mandrill","parsio","s3","webhook","webhooks"],"created_at":"2024-11-10T19:03:43.917Z","updated_at":"2025-07-17T14:08:00.458Z","avatar_url":"https://github.com/cpursley.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Webhoox\n\nWebhoox makes it easy to deal with inbound webhooks by using an adapter-based approach, saving you time.\n\nThis library started off as a fork of Maarten's awesome [receivex](https://github.com/maartenvanvliet/receivex) email-focused library.\n\nWebhoox aims to support the [Standard Webhooks](https://www.standardwebhooks.com/) spec and includes an [authentication module](./lib/webhoox/authentication/standard_webhook.ex) and [adapter](./lib/webhoox/adapters/standard_webhook.ex)\n\n## Adapters\n\n- [Standard Webhook](./lib/webhoox/adapters/standard_webhook.ex)\n- [MailerSend](./lib/webhoox/adapters/mailersend.ex)\n- [Mailgun](./lib/webhoox/adapters/mailgun.ex)\n- [Mandrill](./lib/webhoox/adapters/mandrill.ex)\n- [Hasura](./lib/webhoox/adapters/hasura.ex)\n- [s3](./lib/webhoox/adapters/s3.ex)\n- [Parsio](./lib/webhoox/adapters/parsio.ex)\n\nYou can implement your own adapter by following the existing adapters as an example. Pull requests for new adapters welcome!\n\n## Installation\n\n[Available in Hex](https://hex.pm/packages/webhoox), the package can be installed\nby adding `webhoox` to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [\n    {:webhoox, \"~\u003e 0.3.1\"}\n  ]\nend\n```\n\n## Configuration\n\nExample configuration for Standard Webhook with the Plug router:\n\n```elixir\n# Your router.ex file\nforward(\"_incoming\", to: Webhoox, init_opts: [\n  adapter: Webhoox.Adapter.StandardWebhook,\n  adapter_opts: [secret: \"MfKQ9r8GKYqrTwjUPD8ILPZIo2LaLaSw\"],\n  handler: Example.Processor]\n)\n```\n\nExample Processor:\n\n```elixir\n  defmodule Example.Processor do\n    @behaviour Webhoox.Handler\n\n    def process(webhook = %Webhoox.Webhook.StandardWebhook{}) do\n      # You probably want to handle processing of the event asynchronously\n      # and go ahead and return a 200 as not to block the sending server\n      \n      {:ok, \"200 OK\"}\n    end\n  end\n```\n\nDocumentation can be found at [https://hex.pm/packages/webhoox](https://hex.pm/packages/webhoox).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcpursley%2Fwebhoox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcpursley%2Fwebhoox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcpursley%2Fwebhoox/lists"}