Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/shreyasnayak/actioner

The Actioner is a c++ project that initiates or activates webhooks in response to events generated by an external third-party application.
https://github.com/shreyasnayak/actioner

Last synced: about 1 month ago
JSON representation

The Actioner is a c++ project that initiates or activates webhooks in response to events generated by an external third-party application.

Awesome Lists containing this project

README

        

# Actioner
The Actioner is a c++ project that initiates or activates webhooks in response to events generated by an external third-party application.

# Eevnt data formate
```json
{
"event_name": {
"event_data_key_1": "a",
"event_data_key_2": "b"
}
}
```

# Trigger Conf
```json
{
"triggers": [
{
"event_name": "event_name_here",
"trigger_name": "trigger_name_here",
"trigger_condition": {},
"const_var": {
"var_first_name": "shreyas",
"var_last_name": "nayak"
},
"var_gen_policy": {},
"trigger_type": "webhook",
"trigger_info": {
"url": "https://webhook.site/9bc12640-ff4b-4ffb-897e-3849df2d578a"
}
}
]
}
```