Webhooks
List webhooks
Fetch a list of all webhooks.
get/api/v2/webhooks
Response
Webhooks response
Example response
{
"items": [
{
"_id": "57be1db38b75bf0772d11384",
"name": "Example hook",
"url": "http://www.example.com",
"secret": "frobozz",
"statements": [
{
"resources": [
"proj/*:env/*;qa_*:/flag/*"
],
"actions": [
"*"
],
"effect": "allow"
}
],
"on": true,
"tags": [
"examples"
],
"_access": {
"denied": [
{
"reason": {
"resources": [
"proj/*:env/*;qa_*:/flag/*"
],
"actions": [
"*"
],
"effect": "allow"
}
}
],
"allowed": [
{
"reason": {
"resources": [
"proj/*:env/*;qa_*:/flag/*"
],
"actions": [
"*"
],
"effect": "allow"
}
}
]
}
}
]
}