A simple webhook server to manage API service requests, currently in version 0-alpha.
vendor/bin/phinx migrate DB migrations
This is an API webhook configurator. You can invoke a POST request to /create
to create a new endpoint webhook. The API will respond with a hash code that you can use to submit new webhook events.
Example:
curl -X POST http://localhost/create --data-raw '{"domain" : "http://myserver.com"}' --header 'X-API-TOKEN: yourTokenSetInEnvVariable'
- The create method will respond with a hash code and queue UUID, which you can use for subsequent requests.
curl -X POST /http[/{queueId}/{followUpUri}] --data-raw '{"payload" : "test"}' --header 'X-HASH: hashCode'
Following is the list of webhooks you can invoke:
- http