https://github.com/grvcoelho/webhulk
:muscle: A lightweight API for managing webhooks
https://github.com/grvcoelho/webhulk
microservice postback webhook
Last synced: 8 days ago
JSON representation
:muscle: A lightweight API for managing webhooks
- Host: GitHub
- URL: https://github.com/grvcoelho/webhulk
- Owner: grvcoelho
- License: mit
- Created: 2017-10-13T20:56:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-08T16:35:26.000Z (over 7 years ago)
- Last Synced: 2025-02-16T18:44:53.847Z (3 months ago)
- Topics: microservice, postback, webhook
- Language: Go
- Homepage:
- Size: 14.8 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# webhulk
[](https://travis-ci.org/grvcoelho/webhulk)
:construction: A lightweight API for managing webhooks
## API
### Webhooks
| Attribute | Type | Description |
| --------- | ---- | ----------- |
| `name` | *String* | An indentifier for the webhook |
| `url` | *String* | The url messages will be sent to |
| `enabled` | *Boolean* | Whether or not it is enabled |### Messages
| Attribute | Type | Description |
| --------- | ---- | ----------- |
| `headers` | *JSON* | The HTTP headers that will be sent |
| `payload` | *JSON* | The payload that will be sent |
| `signature` | *String* | An HMAC signature of the message |### Deliveries
| Attribute | Type | Description |
| --------- | ---- | ----------- |
| `status` | *String* | The status of the delivery. One of: `success`, `failed`, `processing` |
| `latency` | *Integer* | The time between the delivery and the response from the client |
| `status_code` | *String* | The HTTP status code the client respond with |